JavaCompilerCore/.gitea/workflows/build_and_test.yml
Daniel Holle 38827544c9
Some checks failed
Build and Test with Maven / Build-and-test-with-Maven (push) Failing after 2m21s
Split up test and compile to improve readability
2024-03-08 17:33:49 +01:00

25 lines
575 B
YAML

name: Build and Test with Maven
on: [push]
jobs:
Build-and-test-with-Maven:
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v3
- name: Install maven
run: |
apt update
apt install -y maven
- name: Install java
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '21'
cache: 'maven'
- name: Compile project
run: |
mvn compile
- name: Run tests
run: |
mvn test