Improve resolver #6
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: CI | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| test: | |
| name: Test | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: jdx/mise-action@v2 | |
| with: | |
| install: true | |
| - name: Run tests | |
| run: cargo test --all-features | |
| - name: Run tests (no default features) | |
| run: cargo test --no-default-features | |
| - name: Run examples (all features) | |
| run: | | |
| cargo run --example const_example --all-features | |
| cargo run --example domain_specific --all-features | |
| cargo run --example generic_demo | |
| - name: Run examples (no default features) | |
| run: | | |
| cargo run --example generic_demo --no-default-features | |
| fmt: | |
| name: Format | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: jdx/mise-action@v2 | |
| with: | |
| install: true | |
| - name: Install nightly rustfmt | |
| run: rustup toolchain install nightly --component rustfmt | |
| - name: Check formatting | |
| run: cargo +nightly fmt -- --check | |
| clippy: | |
| name: Clippy | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: jdx/mise-action@v2 | |
| with: | |
| install: true | |
| - name: Install clippy | |
| run: rustup component add clippy | |
| - name: Run clippy | |
| run: cargo clippy --all-features -- -D warnings |