Skip to content

Commit

Permalink
Create test
Browse files Browse the repository at this point in the history
  • Loading branch information
radumarias authored May 14, 2024
1 parent 6c0d6e4 commit d4fe09c
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/test
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
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@v3
- name: Build
run: cargo build --verbose
- name: Check
run: cargo check --verbose
- name: Run tests
run: cargo test --tests --lib --verbose
- name: Run doctests
run: cargo test --package rencfs --doc --verbose

0 comments on commit d4fe09c

Please sign in to comment.