chore(deps): bump rustls-webpki from 0.101.2 to 0.101.4 #59
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: CI | |
on: | |
push: | |
branches: ['main'] | |
pull_request: | |
jobs: | |
test: | |
strategy: | |
matrix: | |
# unnecessary until macos-latest runs on arm64 arch | |
# os: [ubuntu-latest, macos-latest] | |
os: [ubuntu-latest] | |
rust: [stable, nightly] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v2 | |
name: Checkout repository | |
- uses: actions-rs/toolchain@v1 | |
name: Set up toolchain | |
with: | |
profile: minimal | |
toolchain: ${{ matrix.rust }} | |
override: true | |
- uses: Swatinem/rust-cache@v2 | |
name: Cache toolchain and dependencies | |
- uses: actions-rs/cargo@v1 | |
name: Build crate | |
with: | |
command: build | |
args: --all-targets | |
- uses: actions-rs/cargo@v1 | |
name: Test crate | |
with: | |
command: test | |
lint: | |
strategy: | |
matrix: | |
# unnecessary until macos-latest runs on arm64 arch | |
# os: [ubuntu-latest, macos-latest] | |
os: [ubuntu-latest] | |
rust: [stable, nightly] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v2 | |
name: Checkout repository | |
- uses: actions-rs/toolchain@v1 | |
name: Set up toolchain | |
with: | |
profile: minimal | |
toolchain: ${{ matrix.rust }} | |
override: true | |
components: rustfmt, clippy | |
- uses: Swatinem/rust-cache@v2 | |
name: Cache toolchain and dependencies | |
- uses: actions-rs/cargo@v1 | |
name: Check code with cargo fmt | |
with: | |
command: fmt | |
args: --all -- --check | |
- uses: actions-rs/cargo@v1 | |
name: Check code with cargo clippy | |
with: | |
command: clippy | |
args: --all-targets -- -D warnings |