Pin to ubuntu-24.04 for workflows (#33) #60
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: "CI - Test Features" | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
test-autogenerated: | |
runs-on: ubuntu-24.04 | |
continue-on-error: true | |
strategy: | |
matrix: | |
features: | |
- ansible-lint | |
- django-upgrade | |
- pyadr | |
- pytest | |
- pymarkdownlnt | |
- pyupgrade | |
- pycqa | |
- rstcheck | |
- sshpass | |
baseImage: | |
- debian:latest | |
- ubuntu:latest | |
- mcr.microsoft.com/devcontainers/base:debian | |
- mcr.microsoft.com/devcontainers/base:ubuntu | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v4 | |
- name: "Install latest devcontainer CLI" | |
run: npm install -g @devcontainers/cli | |
- name: "Generating tests for '${{ matrix.features }}' against '${{ matrix.baseImage }}'" | |
run: devcontainer features test --skip-scenarios -f ${{ matrix.features }} -i ${{ matrix.baseImage }} . | |
test-scenarios: | |
runs-on: ubuntu-24.04 | |
continue-on-error: true | |
strategy: | |
matrix: | |
features: | |
- ansible-lint | |
- django-upgrade | |
- pyadr | |
- pytest | |
- pymarkdownlnt | |
- pyupgrade | |
- pycqa | |
- rstcheck | |
- sshpass | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v4 | |
- name: "Install latest devcontainer CLI" | |
run: npm install -g @devcontainers/cli | |
- name: "Generating tests for '${{ matrix.features }}' scenarios" | |
run: devcontainer features test -f ${{ matrix.features }} --skip-autogenerated --skip-duplicated . | |
test-global: | |
runs-on: ubuntu-24.04 | |
continue-on-error: true | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v4 | |
- name: "Install latest devcontainer CLI" | |
run: npm install -g @devcontainers/cli | |
- name: "Testing global scenarios" | |
run: devcontainer features test --global-scenarios-only . |