Skip to content

Commit

Permalink
feat: add GitHub action to test code
Browse files Browse the repository at this point in the history
  • Loading branch information
raits committed Aug 7, 2023
1 parent 15477de commit ee4063b
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: MISP2 tests
on: [push]
jobs:
run-test:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- name: Set up JDK 8
uses: actions/setup-java@v3
with:
java-version: '8'
distribution: 'temurin'
- name: Set up Gradle
uses: gradle/gradle-build-action@v2
- name: Run test
run: ./gradlew test

0 comments on commit ee4063b

Please sign in to comment.