2024-03-07 13:41:50 +00:00
|
|
|
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
|
2024-03-08 13:54:58 +00:00
|
|
|
- name: Install java
|
|
|
|
uses: actions/setup-java@v4
|
|
|
|
with:
|
|
|
|
distribution: 'temurin'
|
|
|
|
java-version: '21'
|
|
|
|
cache: 'maven'
|
|
|
|
- name: Run tests
|
2024-03-07 13:41:50 +00:00
|
|
|
run: |
|
2024-03-08 13:54:58 +00:00
|
|
|
mvn test
|