soul-walker
0b541c6c85
All checks were successful
Continuous Integration / GitHub Actions Test (push) Successful in 7s
35 lines
608 B
YAML
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
|
|
}}"
|