workflow ref #10
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test Expect Self Parameter Action | |
on: [push, pull_request] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Run expect-self-parameter action | |
uses: ./ # This points to the local action in the repository | |
with: | |
params: > | |
{ | |
"foo": {"continue-on-error": "true"}, | |
"bar": {"timeout-minutes": "10"} | |
} | |
- id: foo | |
run: echo hello | |
continue-on-error: true | |
- id: bar | |
run: sleep 5 | |
timeout-minutes: 10 |