chore(deps): bump proc-macro2 from 1.0.86 to 1.0.89 #22
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 | |
concurrency: | |
group: "${{ github.workflow }}-${{ github.ref }}" | |
cancel-in-progress: "${{ github.ref != 'refs/heads/master' }}" | |
"on": | |
workflow_dispatch: | |
merge_group: | |
pull_request: | |
branches: | |
- master | |
push: | |
branches: | |
- master | |
env: | |
SCCACHE_GHA_ENABLED: "true" | |
RUSTC_WRAPPER: sccache | |
CC: sccache clang | |
CXX: sccache clang++ | |
jobs: | |
test: | |
name: build-and-test | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup sccache | |
uses: mozilla-actions/[email protected] | |
timeout-minutes: 5 | |
continue-on-error: true | |
- name: Build | |
run: cargo check --all-features --all-targets | |
- name: Test | |
run: cargo test --all-features --all-targets | |
lint: | |
name: lint checks | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup sccache | |
uses: mozilla-actions/[email protected] | |
timeout-minutes: 5 | |
continue-on-error: true | |
- run: cargo fmt --check | |
- run: cargo clippy --all-features --all-targets -- --deny warnings |