Bump ring from 0.17.8 to 0.17.12 #237
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
| on: | |
| push: | |
| branches: | |
| - main | |
| tags: | |
| - "*" | |
| pull_request: | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
| cancel-in-progress: true | |
| name: CI | |
| jobs: | |
| lint: | |
| name: Lint | |
| runs-on: ubuntu-20.04 | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - uses: actions-rs/toolchain@v1 | |
| with: | |
| toolchain: stable | |
| override: true | |
| # make sure all code has been formatted with rustfmt | |
| - run: rustup component add rustfmt | |
| - run: cargo fmt -- --check --color always | |
| # run clippy to verify we have no warnings | |
| - run: rustup component add clippy | |
| - run: cargo fetch | |
| - run: cargo clippy --all-features --all-targets -- -D warnings | |
| test: | |
| name: Test | |
| strategy: | |
| matrix: | |
| os: [ubuntu-20.04, windows-latest, macOS-latest] | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - uses: actions-rs/toolchain@v1 | |
| with: | |
| toolchain: stable | |
| override: true | |
| - run: cargo fetch | |
| - name: cargo test build | |
| run: cargo test --all-features --no-run | |
| - name: cargo test | |
| run: cargo test --all-features | |
| deny-check: | |
| name: cargo-deny check | |
| runs-on: ubuntu-20.04 | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - uses: EmbarkStudios/cargo-deny-action@v1 | |
| publish-check: | |
| name: Publish Check | |
| runs-on: ubuntu-20.04 | |
| steps: | |
| - uses: actions/checkout@v1 | |
| - uses: actions-rs/toolchain@v1 | |
| with: | |
| toolchain: stable | |
| override: true | |
| - run: cargo fetch | |
| - run: cargo publish --dry-run |