Skip to content

Merge pull request #5 from rzk-lang/formatting-support #16

Merge pull request #5 from rzk-lang/formatting-support

Merge pull request #5 from rzk-lang/formatting-support #16

Workflow file for this run

name: Test action on a sample project
on:
pull_request:
push:
branches: main
jobs:
test:
strategy:
matrix:
runner:
- ubuntu-latest
rzk-version:
- v0.7.1
- 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 formatting only
uses: ./
with:
rzk-version: ${{ matrix.rzk-version }}
files: ${{ matrix.files }}
typecheck: false
check-formatting: true
- 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
rzk-version: "must be ignored!"
files: ${{ matrix.files }}