Skip to content

Commit

Permalink
setting up GitHub actions
Browse files Browse the repository at this point in the history
  • Loading branch information
ftomassetti committed Sep 20, 2024
1 parent d7c4e42 commit d994bf0
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Build and Test

on: [push]

jobs:
build:

runs-on: ubuntu-latest
strategy:
matrix:
java: [ '11', '17' ]
name: Java ${{ matrix.Java }} BuildAndTest

steps:
- uses: actions/checkout@v1
- name: Setup java
uses: actions/setup-java@v3
with:
distribution: 'adopt'
java-version: ${{ matrix.java }}
- name: Test
run: ./gradlew check

0 comments on commit d994bf0

Please sign in to comment.