Skip to content

Commit

Permalink
chore: init ci
Browse files Browse the repository at this point in the history
  • Loading branch information
jenspots committed Oct 24, 2024
1 parent 08d7fbf commit 9ad0d8d
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Test Suite
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
env:
GITHUB_ACTOR: ${{ github.actor }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
steps:
- name: Checkout repository
uses: actions/checkout@v2
# Instantiate JVM v22.
- name: Set up JDK 22
uses: actions/setup-java@v4
with:
java-version: '22'
distribution: 'adopt'
# Run tests.
- name: Run tests
run: gradle test --console=plain --warning-mode all

0 comments on commit 9ad0d8d

Please sign in to comment.