Skip to content

Commit

Permalink
set up git action for cargo test
Browse files Browse the repository at this point in the history
  • Loading branch information
CHRISCARLON committed Oct 3, 2024
1 parent eb2c795 commit 332968f
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/testing_action.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]

env:
CARGO_TERM_COLOR: always

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- name: Run tests
run: cargo test

0 comments on commit 332968f

Please sign in to comment.