Skip to content

Merge branch 'java21' into fibers #9

Merge branch 'java21' into fibers

Merge branch 'java21' into fibers #9

Workflow file for this run

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' ]
steps:
- name: Check out the repository
uses: actions/checkout@v3
- 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