Skip to content

Commit

Permalink
Run tests on a push
Browse files Browse the repository at this point in the history
  • Loading branch information
rick-de-water committed Oct 10, 2024
1 parent e6d47f8 commit 928aab6
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
on: [push]

name: Build and Test

jobs:
test:
name: Build and Test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Fetch
run: cargo fetch
- name: Build
run: cargo build
- name: Test
run: cargo test

0 comments on commit 928aab6

Please sign in to comment.