chore(deps): upgrade opentelemetry and friends #369
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
on: | |
pull_request: | |
branches: [main] | |
push: | |
branches: [main] | |
name: CI | |
env: | |
RUSTDOCFLAGS: "-Dwarnings" | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
target: | |
- x86_64-unknown-linux-gnu | |
toolchain: | |
- stable | |
- nightly | |
- beta | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@v4 | |
- name: Install rust toolchain | |
uses: dtolnay/rust-toolchain@master | |
with: | |
toolchain: ${{ matrix.toolchain }} | |
- name: Run cargo build | |
run: cargo build --release --target ${{ matrix.target }} | |
check: | |
name: Check | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
steps: | |
- name: cargo check | |
run: cargo check --all-targets --all-features | |
- name: cargo hack check | |
run: cargo hack check --no-private --feature-powerset --no-dev-deps --skip docs,axum,sni,tls-ring,tls-aws-lc | |
hack: true | |
- name: cargo hack check --each-feature | |
run: cargo hack check --no-private --each-feature --no-dev-deps | |
hack: true | |
- name: cargo doc | |
run: cargo doc --all-features --no-deps | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@v4 | |
- name: Install rust toolchain | |
uses: dtolnay/rust-toolchain@master | |
with: | |
toolchain: stable | |
- uses: taiki-e/install-action@cargo-hack | |
if: matrix.steps.hack | |
- name: ${{ matrix.steps.name }} | |
run: ${{ matrix.steps.run }} | |
msrv: | |
name: MSRV 1.74 | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@v4 | |
- name: Install rust toolchain | |
uses: dtolnay/rust-toolchain@master | |
with: | |
toolchain: 1.74.0 | |
- name: Run cargo build | |
run: cargo check --all-targets --all-features | |
test: | |
name: Tests | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
toolchain: | |
- stable | |
- beta | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install rust toolchain | |
uses: dtolnay/rust-toolchain@master | |
with: | |
toolchain: ${{ matrix.toolchain }} | |
- name: Build cargo tests | |
run: cargo test --features axum,sni,tls,tls-ring --no-run | |
- name: Run cargo test | |
run: cargo test --features axum,sni,tls,tls-ring | |
lints: | |
name: Lints | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install rust toolchain | |
uses: dtolnay/rust-toolchain@master | |
with: | |
toolchain: stable | |
components: rustfmt, clippy | |
- name: Run cargo fmt | |
run: cargo fmt --all -- --check | |
- name: Run cargo clippy | |
uses: actions-rs/clippy-check@v1 | |
if: github.repository_owner == 'linode-sokka' | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
args: --all-features -- -D warnings | |
- name: Run cargo clippy | |
if: github.repository_owner != 'linode-sokka' | |
run: cargo clippy --all-features -- -D warnings | |
deny: | |
name: Deny | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Run cargo deny | |
uses: EmbarkStudios/cargo-deny-action@v1 | |
with: | |
command: check bans licenses sources |