Skip to content

Commit

Permalink
ci: build Maven in GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
Robbert committed Nov 12, 2024
1 parent 1295b68 commit b0a5eda
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Continuous Integration

on:
push:
branches: [main]
pull_request:
branches: [main]

jobs:
build_and_test:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- uses: actions/setup-java@8df1039502a15bceb9433410b1a100fbe190c53b # v4.5.0
with:
java-version: 14
- run: mvn -B package --file pom.xml

0 comments on commit b0a5eda

Please sign in to comment.