mirror of
https://github.com/certbot/certbot.git
synced 2026-06-03 22:08:07 -04:00
stop failing fast
This commit is contained in:
parent
8f6a6af21e
commit
095db25502
2 changed files with 56 additions and 1 deletions
2
.github/workflows/standard_tests_jobs.yml
vendored
2
.github/workflows/standard_tests_jobs.yml
vendored
|
|
@ -9,7 +9,6 @@ on:
|
|||
default: false
|
||||
jobs:
|
||||
test:
|
||||
if: ${{ ! cancelled() }}
|
||||
permissions:
|
||||
contents: read
|
||||
runs-on:
|
||||
|
|
@ -17,6 +16,7 @@ jobs:
|
|||
env:
|
||||
uploadCoverage: ${{ inputs.uploadCoverage }}
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
PYTHON_VERSION: ['3.14']
|
||||
IMAGE_NAME: ['ubuntu-22.04']
|
||||
|
|
|
|||
55
.github/workflows/tox_steps.yml
vendored
Normal file
55
.github/workflows/tox_steps.yml
vendored
Normal file
|
|
@ -0,0 +1,55 @@
|
|||
# Environment variables defined in a calling workflow are not accessible to this reusable workflow. Refer to the documentation for further details on this limitation.
|
||||
name: standard_tests_jobs
|
||||
on:
|
||||
workflow_call:
|
||||
inputs:
|
||||
uploadCoverage:
|
||||
description: 'Upload coverage to Codecov'
|
||||
type: boolean
|
||||
default: false
|
||||
jobs:
|
||||
test:
|
||||
if: ${{ ! cancelled() }}
|
||||
permissions:
|
||||
contents: read
|
||||
runs-on:
|
||||
- "${{ matrix.IMAGE_NAME }}"
|
||||
env:
|
||||
uploadCoverage: ${{ inputs.uploadCoverage }}
|
||||
strategy:
|
||||
matrix:
|
||||
PYTHON_VERSION: ['3.14']
|
||||
IMAGE_NAME: ['ubuntu-22.04']
|
||||
TOXENV:
|
||||
- 'cover'
|
||||
- 'lint-posix'
|
||||
- 'mypy'
|
||||
- 'integration'
|
||||
- 'apache_compat'
|
||||
- 'apacheconftest-with-pebble'
|
||||
- 'nginxroundtrip'
|
||||
- 'validate-changelog'
|
||||
include:
|
||||
- IMAGE_NAME: macOS-15
|
||||
PYTHON_VERSION: '3.14'
|
||||
TOXENV: cover
|
||||
PIP_USE_PEP517: 'true'
|
||||
- IMAGE_NAME: ubuntu-22.04
|
||||
PYTHON_VERSION: '3.10'
|
||||
TOXENV: oldest
|
||||
- IMAGE_NAME: ubuntu-22.04
|
||||
PYTHON_VERSION: '3.10'
|
||||
TOXENV: py310
|
||||
steps:
|
||||
- name: checkout
|
||||
uses: actions/checkout@v4.1.0
|
||||
- uses: "./.github/actions/tox_steps"
|
||||
test_sphinx_builds:
|
||||
permissions:
|
||||
contents: read
|
||||
runs-on:
|
||||
- ubuntu-22.04
|
||||
steps:
|
||||
- name: checkout
|
||||
uses: actions/checkout@v4.1.0
|
||||
- uses: "./.github/actions/sphinx_steps"
|
||||
Loading…
Reference in a new issue