Skip to content

chore(deps): update lockfile #33

chore(deps): update lockfile

chore(deps): update lockfile #33

Workflow file for this run

name: Rust
on: [push]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
env:
CARGO_INCREMENTAL: 0
CARGO_PROFILE_DEV_DEBUG: 1
CARGO_PROFILE_RELEASE_DEBUG: 1
RUST_BACKTRACE: short
CARGO_NET_RETRY: 10
RUSTUP_MAX_RETRIES: 10
RUSTFLAGS: -Dwarnings
jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Rust toolchain
uses: actions-rust-lang/setup-rust-toolchain@v1
- name: Install `nextest` from crates.io
uses: baptiste0928/cargo-install@v3
with:
crate: cargo-nextest
locked: false
- name: Run tests
run: cargo nextest r --no-capture