Skip to content

Commit

Permalink
Merge pull request #18 from ThePrimeagen/max/ci-tests
Browse files Browse the repository at this point in the history
[CI] What automated tests?
  • Loading branch information
MNThomson committed Aug 31, 2023
2 parents e2f8dfe + 111d663 commit 94c5b1f
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 1 deletion.
1 change: 0 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ name: Build & Release
on:
push:
branches: ["master"]
pull_request:

permissions:
contents: write
Expand Down
20 changes: 20 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Test

on:
push:
branches: ["master"]
pull_request:

jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3

- name: Setup Rust env
uses: "./.github/actions/setup-rust-env"

- name: Rust test
run: cargo test --workspace

0 comments on commit 94c5b1f

Please sign in to comment.