Skip to content

Add cargo deny, lints and test workflows #2

Add cargo deny, lints and test workflows

Add cargo deny, lints and test workflows #2

Workflow file for this run

name: Cargo Test
on:
push:
branches: [main]
pull_request:
branches: [main]
concurrency:
group: cargo-test-${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
env:
CARGO_TERM_COLOR: always
RUST_LOG: "error"
RUST_BACKTRACE: short
CARGO_INCREMENTAL: 0
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1
- name: Run Cargo Tests
run: cargo test --all