Fix bug when mixed mode SMC yields zero forward or zero reverse passes #82
Workflow file for this run
This file contains hidden or 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 | |
# needed to allow julia-actions/cache to delete old caches that it has created | |
permissions: | |
actions: write | |
contents: read | |
on: | |
push: | |
branches: | |
- main | |
tags: ["*"] | |
pull_request: | |
types: [opened, reopened, synchronize, ready_for_review] | |
workflow_dispatch: | |
jobs: | |
pre-commit: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v5 | |
- uses: julia-actions/setup-julia@v2 | |
- uses: julia-actions/cache@v2 | |
- run: julia -e 'using Pkg; Pkg.add("JuliaFormatter")' | |
- uses: astral-sh/setup-uv@v6 | |
- run: uv tool install pre-commit | |
- run: pre-commit run --all-files --show-diff-on-failure --color always |