Test Setup Argo #78
Workflow file for this run
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 Setup Argo | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- actions/setup-argo/** | |
- .github/workflows/test-setup-argo.yml | |
pull_request: | |
branches: | |
- main | |
paths: | |
- actions/setup-argo/** | |
- .github/workflows/test-setup-argo.yml | |
merge_group: | |
concurrency: | |
group: "${{ github.workflow }}-${{ github.ref }}" | |
cancel-in-progress: true | |
jobs: | |
setup-argo: | |
runs-on: ubuntu-latest | |
env: | |
# generate a unique cache prefix for each test run, so we can test cache behaviour | |
CACHE_PREFIX: argo-${{ github.run_id }}-${{ github.run_attempt }} | |
strategy: | |
matrix: | |
cache-hit: [false, true] | |
max-parallel: 1 | |
name: "Setup Argo (cache hit: ${{ matrix.cache-hit }})" | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0 | |
with: | |
sparse-checkout: | | |
actions/setup-argo | |
- name: "Setup Argo (cache: ${{ matrix.cache-hit }})" | |
id: setup-argo | |
uses: ./actions/setup-argo | |
with: | |
cache-prefix: ${{ env.CACHE_PREFIX }} | |
version: 3.5.1 | |
- name: Assert cache | |
if: fromJson(steps.setup-argo.outputs.cache-hit) != matrix.cache-hit | |
run: | | |
echo "Expected cache hit: '${{ matrix.cache-hit }}' but got '${{ fromJson(steps.setup-argo.outputs.cache-hit) }}'" | |
exit 1 | |
- name: Check Argo CLI works | |
run: argo version |