Skip to content

Commit

Permalink
Merge pull request #14 from oSoMoN/github-ci
Browse files Browse the repository at this point in the history
Add a github workflow to run the backend tests in CI.
  • Loading branch information
boiko authored Nov 22, 2023
2 parents 5080701 + 095a79c commit 452b624
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: CI

on:
push:
branches:
- master
pull_request:
workflow_dispatch:

jobs:
unittest:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v3
with:
java-version: '11'
distribution: 'temurin'
- run: mvn test

0 comments on commit 452b624

Please sign in to comment.