Skip to content

build(deps): bump proc-macro2 from 1.0.81 to 1.0.82 #85

build(deps): bump proc-macro2 from 1.0.81 to 1.0.82

build(deps): bump proc-macro2 from 1.0.81 to 1.0.82 #85

Workflow file for this run

name: Test
on:
push:
env:
SCCACHE_GHA_ENABLED: "true"
RUSTC_WRAPPER: "sccache"
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Update local toolchain
run: |
rustup update
rustup component add clippy
rustup install nightly
- name: Toolchain info
run: |
cargo --version --verbose
rustc --version
cargo clippy --version
- name: Run sccache-cache
uses: mozilla-actions/[email protected]
- name: Lint
run: |
cargo fmt -- --check
cargo clippy -- -D warnings
- name: Test
run: |
cargo check
cargo test --all
- name: Build
run: cargo build --release