chore(cmd): Change global flags to local since there are no subcommands #17
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: push | |
jobs: | |
test: | |
name: Test | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: ./ | |
id: changelog | |
with: | |
path: test | |
install-only: "true" | |
- name: Binary exists | |
shell: bash | |
run: command -v changelog-generator | |
- name: Binary runs | |
shell: bash | |
run: changelog-generator --help |