Test Setup Codee action #24
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 Setup Codee action | |
| on: | |
| push: | |
| tags-ignore: | |
| - v** | |
| pull_request: | |
| branches: | |
| - master | |
| schedule: | |
| - cron: '0 0 * * 0' | |
| jobs: | |
| test: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: [ubuntu-latest, windows-latest, ubuntu-24.04-arm] | |
| steps: | |
| - name: Checkout repo | |
| uses: actions/checkout@v4 | |
| - name: Run Setup Codee action | |
| uses: ./ | |
| - name: List of Codee files | |
| shell: bash | |
| run: | | |
| echo "Contents of ${RUNNER_TEMP}/codee/:" | |
| ls -la ${RUNNER_TEMP}/codee/ | |
| - name: Check Codee binary (bash) | |
| shell: bash | |
| run: codee --help | |
| - name: Check Codee binary (pwsh) | |
| shell: pwsh | |
| run: codee --help |