chore: Print yampl command executed #66
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 | |
on: push | |
jobs: | |
test: | |
name: Test | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ./ | |
with: | |
file: | | |
test/input.yaml | |
test/input2.yaml | |
test/*_input.yaml | |
vars: | | |
hello=world | |
tag=latest | |
- run: diff test/input.yaml test/expected.yaml | |
- run: diff test/input2.yaml test/expected2.yaml | |
- run: diff test/glob_input.yaml test/glob_expected.yaml | |
- run: git restore test | |
- name: Deprecated values input | |
uses: ./ | |
with: | |
file: | | |
test/input.yaml | |
test/input2.yaml | |
test/*_input.yaml | |
values: | | |
hello=world | |
tag=latest | |
- run: diff test/input.yaml test/expected.yaml | |
- run: diff test/input2.yaml test/expected2.yaml | |
- run: diff test/glob_input.yaml test/glob_expected.yaml |