Some checks failed
Gitea Actions Demo / Explore-Gitea-Actions (push) Failing after 4s
22 lines
628 B
YAML
22 lines
628 B
YAML
name: Gitea Actions Demo
|
|
run-name: ${{ gitea.actor }} is testing out Gitea Actions 🚀
|
|
on: [push]
|
|
|
|
jobs:
|
|
Explore-Gitea-Actions:
|
|
runs-on: ubuntu-22.04
|
|
steps:
|
|
- name: Check out repository code
|
|
uses: http://172.23.112.123:3000/actions/checkout@main
|
|
- name: List files in the repository
|
|
run: |
|
|
ls ${{ gitea.workspace }}
|
|
- name: Set up Java version
|
|
uses: http://172.23.112.123:3000/actions/setup-java@main
|
|
with:
|
|
java-version: 'temurin'
|
|
distribution: '17'
|
|
cache: 'maven'
|
|
|
|
- name: Build with Maven
|
|
run: mvn clean install |