Skip to content

build(deps): bump the dependencies group with 6 updates #53

build(deps): bump the dependencies group with 6 updates

build(deps): bump the dependencies group with 6 updates #53

Workflow file for this run

name: Build
on: push
env:
RUSTFLAGS: "-Dwarnings"
jobs:
build:
runs-on: ubuntu-latest
concurrency:
group: build-${{ github.ref }}-${{ github.event_name }}
cancel-in-progress: true
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Cache
uses: actions/cache@v4
with:
path: |
~/.cargo/registry
~/.cargo/git
target
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- name: Build
run: make build
- name: Test
run: xvfb-run --auto-servernum make test
- name: Format
run: make fmt-check
- name: Clippy
run: make clippy
- name: Audit
run: make audit