This repository has been archived by the owner on Nov 8, 2024. It is now read-only.
CompatHelper: bump compat for Turing to 0.35, (drop existing compat) #41
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: pre-commit | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
- master | |
workflow_dispatch: | |
jobs: | |
pre-commit: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v4 | |
- name: Install Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3' | |
- name: Install Julia | |
uses: julia-actions/setup-julia@v2 | |
- name: Julia Cache | |
uses: julia-actions/cache@v2 | |
- name: Install Julia Formatter | |
run: julia -e 'using Pkg; Pkg.add("JuliaFormatter");' | |
- name: Pre Commit Checks | |
uses: pre-commit/[email protected] |