commiting #1
This file contains hidden or 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 MyCLI Setup | ||
| on: | ||
| push: | ||
| branches: | ||
| - main | ||
| - feature/* | ||
| jobs: | ||
| test: | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - name: Checkout repository | ||
| uses: actions/checkout@v4 | ||
| - name: Install MyCLI | ||
| uses: ./.github/actions/my-cli-action | ||
| with: | ||
| version: '1.2.3' | ||
| - name: Verify CLI Installation | ||
| run: | | ||
| echo "Checking MyCLI version..." | ||
| mycli --version | ||