Bump peter-evans/create-pull-request from 7.0.1 to 7.0.5 #4747
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
name: CI/CD | |
on: | |
merge_group: | |
branches: | |
- dev | |
- main | |
- v1 | |
pull_request: | |
push: | |
workflow_dispatch: | |
env: | |
FORCE_COLOR: 1 | |
concurrency: | |
cancel-in-progress: ${{ !contains(fromJSON('["dev", "main", "v1"]'), github.ref_name) }} | |
group: ${{ github.repository }}-${{ github.workflow }}-${{ github.head_ref || github.ref_name }} | |
jobs: | |
pre-commit: | |
name: Run pre-commit | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
check-latest: true | |
python-version: '3.12' | |
- name: Run pre-commit | |
uses: pre-commit/[email protected] | |
code-ql: | |
name: CodeQL | |
needs: | |
- pre-commit | |
permissions: | |
security-events: write | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v4 | |
- name: Initialize CodeQL | |
uses: github/codeql-action/init@v3 | |
with: | |
languages: python | |
- name: Perform CodeQL Analysis | |
uses: github/codeql-action/analyze@v3 | |
with: | |
category: '/language:python' | |
test: | |
name: Test Python ${{ matrix.python-version }} on ${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
needs: | |
- pre-commit | |
strategy: | |
matrix: | |
os: | |
- macos-latest | |
- ubuntu-latest | |
- windows-latest | |
python-version: | |
- '3.8' | |
- '3.9' | |
- '3.10' | |
- '3.11' | |
- '3.12' | |
- '3.13' | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v4 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v5 | |
with: | |
allow-prereleases: true | |
cache: pip | |
cache-dependency-path: | | |
requirements/runtime.txt | |
requirements/tests.txt | |
check-latest: true | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
python -m pip install --requirement requirements/tests.txt | |
python -m pip install . | |
- name: Run tests | |
run: | | |
make test | |
- name: Upload coverage to Codecov | |
uses: codecov/[email protected] | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
build: | |
name: Build distribution | |
needs: test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
cache: pip | |
cache-dependency-path: | | |
requirements/build.txt | |
check-latest: true | |
python-version: '3.12' | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
python -m pip install -r requirements/build.txt | |
python -m pip install . | |
- name: Build distribution | |
run: | | |
make package | |
- name: Upload package artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: dist | |
path: dist | |
- name: Set version | |
if: startsWith(github.event.ref, 'refs/tags/v') | |
run: echo "VERSION=$(echo ${{ github.ref_name }} | sed 's/^v//')" >> $GITHUB_ENV | |
- name: Generate SBOM | |
if: startsWith(github.event.ref, 'refs/tags/v') | |
run: | | |
make sbom > holidays-${{ env.VERSION }}-sbom.json | |
- name: Upload SBOM | |
if: startsWith(github.event.ref, 'refs/tags/v') | |
uses: actions/upload-artifact@v4 | |
with: | |
name: sbom | |
path: holidays-${{ env.VERSION }}-sbom.json | |
test-build: | |
name: Test build on ${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
needs: build | |
strategy: | |
matrix: | |
os: | |
- macos-latest | |
- ubuntu-latest | |
- windows-latest | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
cache: pip | |
cache-dependency-path: | | |
requirements/runtime.txt | |
requirements/tests.txt | |
check-latest: true | |
python-version: '3.12' | |
- name: Get package artifacts | |
uses: actions/download-artifact@v4 | |
with: | |
name: dist | |
path: dist | |
- name: Run tests | |
shell: bash | |
run: | | |
rm -rf holidays | |
python -m pip install --requirement requirements/tests.txt | |
python -m pip install `ls dist/*.whl` | |
pytest --dist loadscope --numprocesses auto tests/countries tests/financial | |
python -m pip uninstall -y holidays python-dateutil six | |
python -m pip install `ls dist/*.tar.gz` | |
pytest --dist loadscope --numprocesses auto tests/countries tests/financial | |
test-docs: | |
name: Test docs build | |
runs-on: ubuntu-latest | |
needs: test | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v4 | |
- name: Set Up Python | |
uses: actions/setup-python@v5 | |
with: | |
cache: pip | |
cache-dependency-path: requirements/docs.txt | |
python-version: '3.12' | |
- name: Install dependencies | |
run: | | |
python -m pip install --requirement requirements/docs.txt | |
python -m pip install . | |
- name: Build docs | |
run: | | |
make doc | |
publish-main: | |
name: Publish generated artifacts | |
if: | | |
github.repository == 'vacanza/python-holidays' && | |
github.event_name == 'push' && | |
startsWith(github.event.ref, 'refs/tags/v') | |
environment: main | |
needs: | |
- test-build | |
- test-docs | |
permissions: | |
contents: write | |
id-token: write | |
runs-on: ubuntu-latest | |
steps: | |
- name: Download package artifacts | |
uses: actions/download-artifact@v4 | |
with: | |
name: dist | |
path: dist | |
- name: Publish package distributions to PyPI | |
uses: pypa/gh-action-pypi-publish@release/v1 | |
- name: Download SBOM | |
uses: actions/download-artifact@v4 | |
with: | |
name: sbom | |
- name: Update Github release | |
if: ${{ always() }} | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: | | |
gh release upload --repo vacanza/python-holidays ${{ github.ref_name }} dist/* | |
gh release upload --repo vacanza/python-holidays ${{ github.ref_name }} holidays-*-sbom.json |