Update no-such-version test #1145
Workflow file for this run
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: Unit test | |
| on: | |
| - push | |
| permissions: | |
| contents: read | |
| jobs: | |
| pytest_amd64: | |
| runs-on: ubuntu-24.04 | |
| name: pytest amd64 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| persist-credentials: false | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: 3.9 | |
| - name: Install dependencies | |
| run: | | |
| python -m pip install --upgrade pip | |
| pip install -r tests/requirements.txt | |
| gpg --recv-keys C874011F0AB405110D02105534365D9472D7468F \ | |
| && echo "C874011F0AB405110D02105534365D9472D7468F:6:" | gpg --import-ownertrust | |
| - name: Run tests | |
| env: | |
| AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} | |
| AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | |
| TERRAFORM_ACTIONS_GITHUB_TOKEN: No | |
| run: | | |
| GNUPGHOME=$HOME/.gnupg PYTHONPATH=image/tools:image/src pytest tests | |
| pytest_arm64: | |
| runs-on: ubuntu-24.04-arm | |
| name: pytest arm64 | |
| needs: pytest_amd64 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| persist-credentials: false | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: 3.9 | |
| - name: Install dependencies | |
| run: | | |
| python -m pip install --upgrade pip | |
| pip install -r tests/requirements.txt | |
| gpg --recv-keys C874011F0AB405110D02105534365D9472D7468F \ | |
| && echo "C874011F0AB405110D02105534365D9472D7468F:6:" | gpg --import-ownertrust | |
| - name: Run tests | |
| env: | |
| AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} | |
| AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | |
| TERRAFORM_ACTIONS_GITHUB_TOKEN: No | |
| run: | | |
| GNUPGHOME=$HOME/.gnupg PYTHONPATH=image/tools:image/src pytest tests | |
| docs: | |
| runs-on: ubuntu-24.04 | |
| name: Check documentation | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| persist-credentials: false | |
| - name: Check documentation is up-to-date | |
| run: | | |
| PYTHONPATH=docs-gen python3 docs-gen/generate.py | |
| git diff --exit-code | |
| lint: | |
| runs-on: ubuntu-24.04 | |
| name: Linting | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| persist-credentials: false | |
| - name: Actions workflows (including action metadata) | |
| run: | | |
| bash <(curl https://raw.githubusercontent.com/rhysd/actionlint/main/scripts/download-actionlint.bash) | |
| ./actionlint | |
| ./actionlint example_workflows/*.yaml | |
| - name: Lint CHANGELOG | |
| uses: DavidAnson/markdownlint-cli2-action@05f32210e84442804257b2a6f20b273450ec8265 # v19 | |
| with: | |
| config: '.config/changelog.markdownlint.yaml' | |
| globs: 'CHANGELOG.md' | |
| - name: Lint Other Markdown | |
| uses: DavidAnson/markdownlint-cli2-action@05f32210e84442804257b2a6f20b273450ec8265 # v19 | |
| with: | |
| config: '.config/.markdownlint.yaml' | |
| globs: | | |
| docs/*.md | |
| **/README.md | |
| ensure-pinned-actions: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Ensure SHA pinned actions | |
| uses: zgosalvez/github-actions-ensure-sha-pinned-actions@25ed13d0628a1601b4b44048e63cc4328ed03633 # v3 | |
| with: | |
| allowlist: | | |
| actions/ | |
| dflook/ |