Skip to content

Commit

Permalink
Including some basic Actions build that can at least check that thing…
Browse files Browse the repository at this point in the history
…s compile
  • Loading branch information
august782 committed May 24, 2024
1 parent e1c98b9 commit 8cc5b33
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@

name: auto-check-build

on: [push, pull_request]

jobs:
basicBuild:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2

- name: Set up JDK 8
uses: actions/setup-java@v2
with:
java-version: '8.0.292+10'
distribution: 'adopt'

- name: Installs packages
run: mvn install -B

0 comments on commit 8cc5b33

Please sign in to comment.