otel 0.25 (#170) #193
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, pull_request] | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
lint: | |
# Avoid duplicate jobs on PR from a branch on the same repo | |
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- run: rustup toolchain install 1.72.0 | |
- uses: Swatinem/rust-cache@v2 | |
- uses: taiki-e/install-action@cargo-make | |
- uses: taiki-e/install-action@cargo-deny | |
- run: cargo make fmt-check | |
- run: cargo make clippy | |
- run: cargo make deny-check | |
- run: cargo make docs | |
test: | |
# Avoid duplicate jobs on PR from a branch on the same repo | |
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- run: rustup toolchain install 1.72.0 | |
- uses: Swatinem/rust-cache@v2 | |
- uses: taiki-e/install-action@cargo-make | |
- run: cargo make test | |
alls-green: | |
if: always() && (github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name) | |
runs-on: ubuntu-latest | |
needs: | |
- lint | |
- test | |
steps: | |
- run: ${{ !contains(needs.*.result, 'failure') }} |