Skip to content

Commit

Permalink
Add ci workflow
Browse files Browse the repository at this point in the history
- Just compile/test for now
- Relates #2
  • Loading branch information
jvalkeal committed Dec 14, 2023
1 parent ef0cc5b commit 4adca91
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: CI

on:
workflow_dispatch:
push:
paths-ignore:
- '.github/**'

jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
include:
- nickname: win
os: windows-latest
java: 17
- nickname: macos
os: macos-latest
java: 17
- nickname: linux
os: ubuntu-latest
java: 17
name: CI Build ${{ matrix.nickname }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
distribution: liberica
java-version: ${{ matrix.java }}
cache: maven
- name: Build
run: ./mvnw -B clean verify

0 comments on commit 4adca91

Please sign in to comment.