Skip to content

clear pass on normal exit #136

clear pass on normal exit

clear pass on normal exit #136

Workflow file for this run

name: test
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set default nightly
run: rustup default nightly && rustup update
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --tests --lib --verbose
- name: Run doctests
run: cargo test --package rencfs --doc --verbose