Skip to content

feat: using GH Actions instead of TravisCI #7

feat: using GH Actions instead of TravisCI

feat: using GH Actions instead of TravisCI #7

Workflow file for this run

name: Continuous Testing
on: ['push']
jobs:
build:
strategy:
matrix:
java: [ '17' ]
os: [ 'ubuntu-latest' ]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Set up JDKs
uses: actions/setup-java@v1
with:
java-version: ${{ matrix.java }}
- name: Build project with Maven
run: mvn test --file pom.xml