local-setup-maven/.gitea/workflows/ci.yml
soul-walker c9410badda
All checks were successful
Continuous Integration / GitHub Actions Test (push) Successful in 6s
修改cache问题
修改ci测试
2024-03-22 14:59:07 +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.2
- name: Check Output
id: output
run:
echo "The cache-hit value is ${{ steps.test-action.outputs.cache-hit
}}"