Skip to content

Commit

Permalink
Add CI
Browse files Browse the repository at this point in the history
  • Loading branch information
fxpineau committed Nov 30, 2023
1 parent 377c0a8 commit 3ce1dbe
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/libtest.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: TestLib

on: [push]

jobs:
test:
name: Test on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macOS-latest, windows-latest]
steps:
- uses: actions/checkout@v2
- name: Run lib tests
run: cargo test --verbose -- --nocapture

0 comments on commit 3ce1dbe

Please sign in to comment.