Skip to content

Merge branches 'main' and 'main' of github.com:fernandonogueira/Ox #16

Merge branches 'main' and 'main' of github.com:fernandonogueira/Ox

Merge branches 'main' and 'main' of github.com:fernandonogueira/Ox #16

Workflow file for this run

name: Test
on:
push:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
java-version: [17, 21]
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up Java
uses: actions/setup-java@v1
with:
java-version: ${{ matrix.java-version }}
- name: run tests
run: mvn -B test