JavaCompilerCore/.gitea/workflows/build_and_test.yml
Daniel Holle 20d6cb8eb9
Some checks failed
Gitea Actions Demo / Explore-Gitea-Actions (push) Failing after 1m3s
Remove sudo?
2024-03-08 15:05:02 +01:00

23 lines
560 B
YAML

name: Gitea Actions Demo
run-name: ${{ gitea.actor }} is testing out Gitea Actions 🚀
on: [push]
jobs:
Explore-Gitea-Actions:
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: Run tests
run: |
mvn test