Skip to content

chore(main): release 0.1.9 (#66) #56

chore(main): release 0.1.9 (#66)

chore(main): release 0.1.9 (#66) #56

name: lint-test-clippy
on:
push:
branches: [main]
pull_request:
branches: [main]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
env:
SCCACHE_GHA_ENABLED: "true"
RUSTC_WRAPPER: "sccache"
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- name: sccache-cache
uses: mozilla-actions/sccache-action@v0.0.6
- name: Run fmt
run: cargo fmt -- --check
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose --workspace --all-targets --no-fail-fast
- name: Run clippy
run: cargo clippy --all-features --workspace -- -Dwarnings