Skip to content

Commit

Permalink
Lets just see wether it builds on github actions./
Browse files Browse the repository at this point in the history
  • Loading branch information
mihxil committed Jan 9, 2024
1 parent 011a929 commit 608e1e9
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
---
name: build
on:
push:
branches: [main]
workflow_dispatch:

jobs:
build:
strategy:
fail-fast: false
matrix:
os: [ ubuntu-latest, windows-latest]
java: [ 21 ]
runs-on: ${{ matrix.os }}
steps:
- name: Cancel previous Action
uses: styfle/[email protected]
continue-on-error: true # for act
- uses: actions/checkout@v3
- uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: ${{ matrix.java }}
cache: maven
server-id: vpro-ossrh
- name: Build with Maven
run: mvn compile dependency:copy-dependencies

0 comments on commit 608e1e9

Please sign in to comment.