Switched to some iterators in PredicateIndices for #26 #49
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: Rust Test | |
on: | |
push: | |
branches: ["main"] | |
paths: | |
- ahnlich/** | |
pull_request: | |
branches: ["main"] | |
paths: | |
- ahnlich/** | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Rust cache | |
uses: Swatinem/rust-cache@v2 | |
with: | |
workspaces: ahnlich | |
- name: Set up cargo and rustup tools | |
run: | | |
which cargo-nextest || cargo install cargo-nextest | |
- name: Cache Docker images. | |
uses: ScribeMD/[email protected] | |
with: | |
key: ${{ runner.os }}-cargo-${{ hashFiles('ahnlich/Cargo.lock') }} | |
- name: Format and Lint | |
working-directory: ./ahnlich | |
run: | | |
make format | |
make clippy | |
- name: Run Test | |
working-directory: ./ahnlich | |
run: | | |
make test | |