Skip to content

Commit

Permalink
Merge branch 'master' into java21
Browse files Browse the repository at this point in the history
  • Loading branch information
bgprudhomme committed Nov 2, 2024
2 parents 0a7a57e + a0c5200 commit 4ef1bcc
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/unittests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: "Unit Tests"

on:
push:
branches: [ "master", "java21", "fibers" ]

jobs:
test:
name: Test
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
security-events: write

strategy:
fail-fast: false
matrix:
language: [ 'java' ]

- name: Setup local maven cache
uses: actions/cache@v4
with:
path: ~/.m2/repository
key: maven-cache-${{ hashFiles('**/pom.xml') }}

- name: Run tests
run: ./mvnw test

0 comments on commit 4ef1bcc

Please sign in to comment.