15 lines
398 B
YAML
15 lines
398 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:
|
||
|
- uses: actions/checkout@v4
|
||
|
- uses: actions/setup-java@v4
|
||
|
with:
|
||
|
java-version: '17'
|
||
|
distribution: 'temurin'
|
||
|
- name: Run the Maven verify phase
|
||
|
run: mvn --batch-mode --update-snapshots verify
|