Skip to content

Merge branch 'release/2.2a1' #103

Merge branch 'release/2.2a1'

Merge branch 'release/2.2a1' #103

# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: Python package
on:
push:
branches: [main]
tags: ["*"]
pull_request:
branches: [main]
jobs:
get-version-pep440:
runs-on: ubuntu-latest
outputs:
version: ${{ steps.get-version.outputs.version }}
steps:
- name: Get PEP-440 style version
id: get-version
run: |
PEP440_VERSION=""
VERSION_PREFIX="v"
BRANCH_OR_TAG="$(echo ${{ github.event.ref }} | cut -d / -f 3)"
if [[ "${BRANCH_OR_TAG}" =~ ^v?(([1-9][0-9]*!)?(0|[1-9][0-9]*)(\.(0|[1-9][0-9]*))*(\.?(a|b|rc)(0|[1-9][0-9]*))?(\.post(0|[1-9][0-9]*))?(\.dev(0|[1-9][0-9]*))?)$ ]]
then
PEP440_VERSION="${BRANCH_OR_TAG#$VERSION_PREFIX}"
fi
echo "version=${PEP440_VERSION}" | tee -a $GITHUB_OUTPUT
check:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: pip # caching pip dependencies
- name: Install project and dependent tools
run: |
pip install -e . -r tests/requirements.txt coverage ruff
- name: Check with ruff
run: |
ruff check .
- name: Test with coverage
run: |
coverage run -m unittest -fcv
coverage report -m
coverage xml
- name: SonarCloud Scan
uses: SonarSource/sonarcloud-github-action@master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
build:
runs-on: ubuntu-latest
needs: [get-version-pep440, check]
if: needs.get-version-pep440.outputs.version != ''
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
cache: "pip" # caching pip dependencies
- name: Install builder
run: pip install build
- name: Build Python distribution
run: pyproject-build
- name: Upload dist to artifact
uses: actions/upload-artifact@v4
with:
name: pyyaml_include-dist-${{ needs.get-version-pep440.outputs.version }}
path: dist
if-no-files-found: error
retention-days: 1
publish:
runs-on: ubuntu-latest
needs: [get-version-pep440, build]
if: needs.get-version-pep440.outputs.version != ''
steps:
- name: Download dist from artifact
uses: actions/download-artifact@v4
with:
name: pyyaml_include-dist-${{needs.get-version-pep440.outputs.version}}
path: dist
- name: Publish package
uses: pypa/gh-action-pypi-publish@release/v1
with:
user: __token__
password: ${{ secrets.PYPI_API_TOKEN }}