Skip to content

Commit

Permalink
Run tests (#9)
Browse files Browse the repository at this point in the history
  • Loading branch information
Baltoli authored Mar 5, 2024
1 parent 6ed69f7 commit 5198600
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ concurrency:
cancel-in-progress: true

jobs:
format-check:
name: 'Check code formatting'
tests:
name: 'Run tests'
runs-on: ubuntu-latest
steps:
- name: 'Check out code'
Expand All @@ -22,5 +22,9 @@ jobs:
java-version: 17
- name: 'Install Maven'
run: sudo apt-get update && sudo apt-get install --yes maven

- name: 'Check code is formatted correctly'
run: mvn spotless:check --batch-mode -U

- name: 'Run tests'
run: mvn verify --batch-mode -U

0 comments on commit 5198600

Please sign in to comment.