Skip to content

Commit

Permalink
Merge pull request #102 from Rolv-Apneseth/add-testing-workflow
Browse files Browse the repository at this point in the history
ci: add testing workflow
  • Loading branch information
praveenperera authored Apr 15, 2024
2 parents ca0c5ba + 48608af commit 660feae
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Tests

on: [push, pull_request]

jobs:
test:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4

- name: Setup Rust toolchain
run: rustup toolchain install stable --profile minimal

- name: Test all packages in the workspace
run: cargo test --workspace

0 comments on commit 660feae

Please sign in to comment.