Skip to content

Commit

Permalink
CI: Add github CI workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
robinhundt committed Jan 29, 2024
1 parent 44f5993 commit 356de51
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: CI

on: ["push", "pull_request"]

env:
CARGO_TERM_COLOR: always

jobs:
Test:
runs-on: "ubuntu-latest"
steps:
- name: Check out repository
uses: actions/checkout@v4
with:
submodules: recursive
- name: Run tests
run: cargo test --workspace --verbose --all-features --no-fail-fast

0 comments on commit 356de51

Please sign in to comment.