Fix test #394
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: Test | |
| on: [push, pull_request] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Build Docker image | |
| run: docker build -t test-cargo-deny . | |
| - name: Run list | |
| run: | | |
| docker run -v $PWD/test:/test test-cargo-deny \ | |
| "" \ | |
| "" \ | |
| "" \ | |
| "" \ | |
| "false" \ | |
| --log-level warn \ | |
| --manifest-path test/Cargo.toml \ | |
| "" \ | |
| list \ | |
| "" | |
| - name: Run check | |
| run: | | |
| docker run -v $PWD/test:/test test-cargo-deny \ | |
| 1.70.0 \ | |
| "" \ | |
| "" \ | |
| "" \ | |
| "false" \ | |
| --log-level warn \ | |
| --manifest-path test/Cargo.toml \ | |
| --all-features \ | |
| check \ | |
| "" | |
| - name: Run check w/rust-toolchain.toml | |
| run: | | |
| mv ./test/rt.toml ./rust-toolchain.toml | |
| docker run -v $PWD:/ test-cargo-deny \ | |
| "" \ | |
| "" \ | |
| "" \ | |
| "" \ | |
| "false" \ | |
| --log-level warn \ | |
| --manifest-path test/Cargo.toml \ | |
| check \ | |
| "" |