local-setup-maven/.gitea/workflows/ci.yml
soul-walker 0b541c6c85
All checks were successful
Continuous Integration / GitHub Actions Test (push) Successful in 7s
修改maven下载地址及版本说明
2024-03-22 15:20:39 +08:00

35 lines
608 B
YAML

name: Continuous Integration
on:
pull_request:
branches:
- main
push:
branches:
- main
permissions:
contents: read
jobs:
test-action:
name: GitHub Actions Test
runs-on: local-test
steps:
- name: Checkout
id: checkout
uses: https://gitea.joylink.club/actions/checkout@v4
- name: Test Local Action
id: test-action
uses: ./
with:
maven-version: 3.8.8
- name: Check Output
id: output
run:
echo "The cache-hit value is ${{ steps.test-action.outputs.cache-hit
}}"