Skip to content

Commit

Permalink
build: Add test github action
Browse files Browse the repository at this point in the history
Add Github action to run the unit tests
  • Loading branch information
taylor-cedar committed Jul 13, 2021
1 parent 3ef7cff commit 0e731ce
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/github_tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
name: GitHub tests runner
on:
pull_request:
types: [ assigned, opened, synchronize, reopened ]
branches:
- main
jobs:
Run-unit-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Run the tests
run: ./test.sh

0 comments on commit 0e731ce

Please sign in to comment.