Skip to content

Commit

Permalink
chore: Add actions test
Browse files Browse the repository at this point in the history
  • Loading branch information
alt-art committed Jul 13, 2024
1 parent 4f7f589 commit 0f3dee2
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Tests

on:
push:
branches:
- main
pull_request:
branches:
- main

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up JDK 8
uses: actions/setup-java@v4
with:
java-version: '8'
distribution: 'corretto'
- name: Run tests
run: ./gradlew test
- name: Report test results
uses: mikepenz/action-junit-report@v4
if: success() || failure()

0 comments on commit 0f3dee2

Please sign in to comment.