Skip to content

Commit

Permalink
added a github workflow to run the unit tests on pull requests and pu…
Browse files Browse the repository at this point in the history
…shes to `main`
  • Loading branch information
jwnace authored Dec 9, 2023
1 parent 603dd8c commit 336fba8
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Run Tests

on:
push:
branches: [ main ]

pull_request:
branches: [ main ]

workflow_dispatch:

jobs:
Run-Tests:
runs-on: ubuntu-latest

steps:
- name: Checkout the code
uses: actions/checkout@v4

- name: Run the tests
run: ./gradlew test

0 comments on commit 336fba8

Please sign in to comment.