Skip to content

Migrate to github actions #10

Migrate to github actions

Migrate to github actions #10

Workflow file for this run

---
name: jvmquake-ci
on:
push:
branches:
- master
- main
tags:
- v'*'
pull_request:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
include:
- target: test_bionic_openjdk8
- target: test_bionic_openjdk11
- target: test_bionic_zulu8
- target: test_bionic_zulu11
- target: test_jammy_openjdk8
- target: test_jammy_openjdk11
- target: test_centos7_openjdk8
steps:
- uses: actions/checkout@v2
- name: "Run tests"
env:
TARGET: ${{ matrix.target }}
run: "make $TARGET"