Add system-rzk input #3
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 action on a sample project | |
on: | |
pull_request: | |
push: | |
branches: main | |
jobs: | |
test: | |
strategy: | |
matrix: | |
runner: | |
- ubuntu-latest | |
rzk-version: | |
- v0.6.6 | |
- latest | |
files: | |
- "" | |
- example/1-*.rzk.md | |
runs-on: ${{ matrix.runner }} | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Run the action on a sample project | |
id: rzk-check | |
uses: ./ | |
with: | |
rzk-version: ${{ matrix.rzk-version }} | |
files: ${{ matrix.files }} | |
- name: Check action's output | |
shell: bash | |
run: | | |
echo "rzk-version=${{ steps.rzk-check.outputs.rzk-version }}" | |
- name: Run the action again, using previously installed rzk | |
uses: ./ | |
with: | |
system-rzk: true | |
version: "must be ignored!" | |
files: ${{ matrix.files }} |