Skip to content

Use raw identifiers and omit lifetimes #73

Use raw identifiers and omit lifetimes

Use raw identifiers and omit lifetimes #73

Workflow file for this run

name: CI
on: push
jobs:
rustfmt:
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- run: rustup update
- run: cargo fmt --all -- --check
strategy:
matrix:
os:
- macOS-latest
- ubuntu-latest
- windows-latest
clippy:
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- run: rustup update
- run: cargo clippy --workspace --all-targets --all-features -- -D warnings
strategy:
matrix:
os:
- macOS-latest
- ubuntu-latest
- windows-latest
tests:
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- run: rustup update
- run: cargo test --workspace
strategy:
matrix:
os:
- macOS-latest
- ubuntu-latest
- windows-latest
coverage:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: rustup update
- run: rustup component add llvm-tools
- run: cargo install cargo-llvm-cov
- run: cargo llvm-cov --lcov --workspace --output-path lcov.info
- uses: codecov/codecov-action@v5
with:
files: coverage/lcov.info
- uses: coverallsapp/github-action@v2
with:
github-token: ${{ secrets.GITHUB_TOKEN }}