Update Cadical to version 2.1.0 #8
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: Check Format | |
on: | |
pull_request: | |
branches-ignore: ["dependabot/**"] | |
env: | |
# Lets us format with unstable rustfmt options | |
RUST_CHANNEL: nightly | |
jobs: | |
check_format: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
# Check formatting of Rust files | |
- name: Install Rust toolchain | |
run: | | |
rustup toolchain install --profile minimal --component rustfmt --no-self-update ${{ env.RUST_CHANNEL }} | |
rustup default ${{ env.RUST_CHANNEL }} | |
- name: Run cargo format | |
run: cargo +nightly fmt --all --check |