Skip to content

Drop unused nix dependency #225

Drop unused nix dependency

Drop unused nix dependency #225

Workflow file for this run

name: test
on: [push, pull_request]
permissions:
contents: read
jobs:
test:
name: ${{ matrix.toolchain }} (${{ matrix.profile.name }})
runs-on: ubuntu-latest
steps:
- run: sudo apt-get update
- run: sudo apt-get install -y asciidoctor
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
toolchain: ${{ matrix.toolchain }}
- run: cargo test ${{ matrix.profile.flag }}
strategy:
fail-fast: false
matrix:
toolchain:
- nightly
- beta
- stable
profile:
- name: debug
- name: release
flag: --release