Skip to content

Commit

Permalink
Add github actions declaration
Browse files Browse the repository at this point in the history
  • Loading branch information
fracz committed Mar 17, 2024
1 parent fbb07dc commit 1866cbe
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/github-actions.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: CI for Java Invoice
on: [push]
jobs:
test:
name: Unit tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK
uses: actions/setup-java@v2
with:
java-version: '17'
distribution: 'adopt'
- name: Test
run: mvn test

0 comments on commit 1866cbe

Please sign in to comment.