chore(deps): Bump actions/setup-python from 4 to 5 #825
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
# encoding: utf-8 | |
# This file is part of CycloneDX Python | |
# | |
# Licensed under the Apache License, Version 2.0 (the "License"); | |
# you may not use this file except in compliance with the License. | |
# You may obtain a copy of the License at | |
# | |
# http://www.apache.org/licenses/LICENSE-2.0 | |
# | |
# Unless required by applicable law or agreed to in writing, software | |
# distributed under the License is distributed on an "AS IS" BASIS, | |
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | |
# See the License for the specific language governing permissions and | |
# limitations under the License. | |
# | |
# SPDX-License-Identifier: Apache-2.0 | |
# Copyright (c) OWASP Foundation. All Rights Reserved. | |
name: Python CI | |
on: | |
workflow_dispatch: | |
pull_request: | |
branches-ignore: ['dependabot/**'] | |
push: | |
tags: [ 'v*.*.*' ] # run again on release tags to have tools mark them | |
branches: [ 'main' ] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
env: | |
PYTHON_VERISON_DEFAULT: "3.11" | |
POETRY_VERSION: "1.1.15" | |
REPORTS_DIR: CI_reports | |
TESTS_REPORTS_ARTIFACT: tests-reports | |
jobs: | |
coding-standards: | |
name: Linting & Coding Standards | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
steps: | |
- name: Checkout | |
# see https://github.com/actions/checkout | |
uses: actions/checkout@v4 | |
- name: Setup Python Environment | |
# see https://github.com/actions/setup-python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ env.PYTHON_VERISON_DEFAULT }} | |
architecture: 'x64' | |
- name: Install poetry | |
# see https://github.com/marketplace/actions/setup-poetry | |
uses: Gr1N/setup-poetry@v8 | |
with: | |
poetry-version: ${{ env.POETRY_VERSION }} | |
- name: Install dependencies | |
run: poetry install | |
- name: Run tox | |
run: poetry run tox -e flake8 -s false | |
static-code-analysis: | |
name: Static Coding Analysis (py${{ matrix.python-version}} ${{ matrix.toxenv-factor }}) | |
runs-on: ${{ matrix.os }} | |
timeout-minutes: 10 | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- # test with the locked dependencies | |
python-version: '3.11' | |
toxenv-factor: 'locked' | |
os: ubuntu-latest | |
- # test with the lowest dependencies | |
python-version: '3.6' | |
toxenv-factor: 'lowest' | |
os: ubuntu-20.04 | |
steps: | |
- name: Checkout | |
# see https://github.com/actions/checkout | |
uses: actions/checkout@v4 | |
- name: Setup Python Environment | |
# see https://github.com/actions/setup-python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
architecture: 'x64' | |
- name: Install poetry | |
# see https://github.com/marketplace/actions/setup-poetry | |
uses: Gr1N/setup-poetry@v8 | |
with: | |
poetry-version: ${{ env.POETRY_VERSION }} | |
- name: Install dependencies | |
run: poetry install | |
- name: Run tox | |
run: poetry run tox -e mypy-${{ matrix.toxenv-factor }} -s false | |
build-and-test: | |
name: Test (${{ matrix.os }} py${{ matrix.python-version }} ${{ matrix.toxenv-factor }}) | |
runs-on: ${{ matrix.os }} | |
timeout-minutes: 10 | |
strategy: | |
fail-fast: false | |
matrix: | |
os: | |
- ubuntu-latest | |
- macos-latest | |
# tem disabled: - windows-latest | |
# tests on windows have issues caused by `virtualenv`<=20.21 as a dependency from `tox` | |
# see https://github.com/CycloneDX/cyclonedx-python/actions/runs/5534372036 | |
python-version: | |
- "3.11" # highest supported | |
- "3.10" | |
- "3.9" | |
- "3.8" | |
- "3.7" | |
- "3.6" # lowest supported -- handled in include | |
toxenv-factor: ['locked'] | |
include: | |
- # test with py36 ubuntu20 | |
os: ubuntu-20.04 | |
python-version: '3.6' | |
toxenv-factor: 'locked' | |
- # test with the lowest dependencies | |
os: ubuntu-20.04 | |
python-version: '3.6' | |
toxenv-factor: 'lowest' | |
- os: windows-latest | |
python-version: '3.7' | |
toxenv-factor: 'locked' | |
- os: windows-latest | |
python-version: '3.6' | |
toxenv-factor: 'locked' | |
exclude: | |
- # no py36 with latest ubuntu - see https://raw.githubusercontent.com/actions/python-versions/main/versions-manifest.json | |
os: ubuntu-latest | |
python-version: '3.6' | |
- # broken poetry installer - see https://github.com/CycloneDX/cyclonedx-python/actions/runs/3435061093/jobs/5727124247#step:6:15 | |
os: macos-latest | |
python-version: '3.11' | |
steps: | |
- name: Checkout | |
# see https://github.com/actions/checkout | |
uses: actions/checkout@v4 | |
- name: Create reports directory | |
run: mkdir ${{ env.REPORTS_DIR }} | |
- name: Setup Python Environment | |
# see https://github.com/actions/setup-python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
architecture: 'x64' | |
- name: Install poetry | |
# see https://github.com/marketplace/actions/setup-poetry | |
uses: Gr1N/setup-poetry@v8 | |
with: | |
poetry-version: ${{ env.POETRY_VERSION }} | |
- name: Install dependencies | |
run: poetry install | |
- name: Ensure build successful | |
run: poetry build | |
- name: Run tox | |
run: poetry run tox -e py-${{ matrix.toxenv-factor }} -s false | |
- name: Generate coverage reports | |
if: ${{ failure() || success() }} | |
shell: bash | |
run: | | |
set -eux | |
poetry run coverage report -m | |
poetry run coverage xml -o '${{ env.REPORTS_DIR }}/coverage/${{ matrix.os }}_${{ matrix.python-version }}_${{ matrix.toxenv-factor }}.cobertura.xml' | |
- name: Artifact reports | |
if: ${{ ! cancelled() }} | |
# see https://github.com/actions/upload-artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: ${{ env.TESTS_REPORTS_ARTIFACT }} | |
path: ${{ env.REPORTS_DIR }} | |
if-no-files-found: error | |
report-coverage: | |
name: Publish test coverage | |
needs: [ "build-and-test" ] | |
runs-on: ubuntu-latest | |
timeout-minutes: 5 | |
steps: | |
- name: fetch test artifacts | |
# see https://github.com/actions/download-artifact | |
uses: actions/download-artifact@v3 | |
with: | |
name: ${{ env.TESTS_REPORTS_ARTIFACT }} | |
path: ${{ env.REPORTS_DIR }} | |
- name: Run codacy-coverage-reporter | |
env: | |
CODACY_PROJECT_TOKEN: ${{ secrets.CODACY_PROJECT_TOKEN }} | |
if: ${{ env.CODACY_PROJECT_TOKEN != '' }} ## see https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#example-using-secrets | |
# see https://github.com/codacy/codacy-coverage-reporter-action | |
uses: codacy/codacy-coverage-reporter-action@v1 | |
with: | |
project-token: ${{ env.CODACY_PROJECT_TOKEN }} | |
coverage-reports: ${{ env.REPORTS_DIR }}/coverage/* |