Skip to content

Commit

Permalink
add github workflow config
Browse files Browse the repository at this point in the history
  • Loading branch information
Gleethos committed Dec 10, 2024
1 parent df8331b commit 2dcbf23
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Build And Test on All OSs
on: [push, pull_request]
jobs:
gradle:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
java: [1.8, 11, 17, 21]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v1
- uses: actions/setup-java@v1
with:
java-version: ${{ matrix.java }}
- uses: eskatos/gradle-command-action@v1
with:
arguments: check --scan

0 comments on commit 2dcbf23

Please sign in to comment.