1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304
|
name: CI/CD
on:
merge_group:
pull_request:
branches:
- dev
- main
- v1
push:
branches:
- dev
- main
- v1
tags:
- 'v*'
workflow_dispatch:
workflow_run:
workflows: ['Update pre-commit hooks']
branches:
- update-pre-commit-hooks
types:
- completed
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-24.04
steps:
- name: Check out repository
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
- name: Install uv
uses: astral-sh/setup-uv@61cb8a9741eeb8a550a1b8544337180c0fc8476b
with:
python-version: '3.14'
version: '0.9.16'
- name: Install Python
run: uv python install "$UV_PYTHON"
- name: Run pre-commit
run: uv tool run --with pre-commit-uv pre-commit run --show-diff-on-failure --color=always --all-files
code-ql:
name: CodeQL
needs:
- pre-commit
permissions:
security-events: write
runs-on: ubuntu-24.04
steps:
- name: Check out repository
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
- name: Initialize CodeQL
uses: github/codeql-action/init@b20883b0cd1f46c72ae0ba6d1090936928f9fa30
with:
languages: python
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@b20883b0cd1f46c72ae0ba6d1090936928f9fa30
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.10'
- '3.11'
- '3.12'
- '3.13'
- '3.14'
steps:
- name: Check out repository
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
- name: Install uv
uses: astral-sh/setup-uv@61cb8a9741eeb8a550a1b8544337180c0fc8476b
with:
python-version: ${{ matrix.python-version }}
version: '0.9.16'
- name: Install Python ${{ matrix.python-version }}
run: uv python install ${{ matrix.python-version }}
- name: Install dependencies
run: uv sync --frozen --no-dev --group tests --link-mode=copy
- name: Run tests
run: make test
- name: Upload coverage to Codecov
uses: codecov/codecov-action@671740ac38dd9b0130fbe1cec585b89eea48d3de
with:
token: ${{ secrets.CODECOV_TOKEN }}
build:
name: Build distribution
needs: test
runs-on: ubuntu-24.04
steps:
- name: Check out repository
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
- name: Install uv
uses: astral-sh/setup-uv@61cb8a9741eeb8a550a1b8544337180c0fc8476b
with:
python-version: '3.14'
version: '0.9.16'
- name: Install Python
run: uv python install "$UV_PYTHON"
- name: Install dependencies
run: uv sync --frozen --no-default-groups --no-install-project --group build --link-mode=copy
- name: Build distribution
run: make package
- name: Upload package artifacts
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f
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@b7c566a772e6b6bfb58ed0dc250532a479d7789f
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@de0fac2e4500dabe0009e67214ff5f5447ce83dd
- name: Install uv
uses: astral-sh/setup-uv@61cb8a9741eeb8a550a1b8544337180c0fc8476b
with:
python-version: '3.14'
version: '0.9.16'
- name: Install Python
shell: bash
run: uv python install "$UV_PYTHON"
- name: Get package artifacts
uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131
with:
name: dist
path: dist
- name: Run tests
shell: bash
run: |
uv sync --frozen --no-default-groups --no-install-project --group tests --link-mode=copy
rm -rf holidays
uv pip install dist/*.whl --link-mode=copy
uv run --no-sync pytest --dist loadscope --numprocesses auto tests/countries tests/financial
uv pip uninstall holidays
uv pip install dist/*.tar.gz --link-mode=copy
uv run --no-sync pytest --dist loadscope --numprocesses auto tests/countries tests/financial
test-docs:
name: Test docs build
runs-on: ubuntu-24.04
needs: test
steps:
- name: Check out repository
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
- name: Install uv
uses: astral-sh/setup-uv@61cb8a9741eeb8a550a1b8544337180c0fc8476b
with:
python-version: '3.14'
version: '0.9.16'
- name: Install Python
run: uv python install "$UV_PYTHON"
- name: Install dependencies
run: uv sync --frozen --no-default-groups --no-install-project --group docs --link-mode=copy
- name: Build docs
run: make doc
publish-main:
name: Publish generated artifacts
if: |
github.repository == 'vacanza/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-24.04
steps:
- name: Download package artifacts
uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131
with:
name: dist
path: dist
- name: Publish package distributions to PyPI
uses: pypa/gh-action-pypi-publish@ed0c53931b1dc9bd32cbe73a98c7f6766f8a527e
sign-artifacts:
name: Create SHA1 checksums and Sigstore signatures
runs-on: ubuntu-24.04
needs:
- publish-main
permissions:
id-token: write
steps:
- name: Download package artifacts
uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131
with:
name: dist
path: dist
- name: Compute SHA1 checksums
run: |
cd dist
for file in *; do
sha1sum "$file" > "$file.sha1"
done
- name: Sign the files using Sigstore
uses: sigstore/gh-action-sigstore-python@a5caf349bc536fbef3668a10ed7f5cd309a4b53d
with:
inputs: |
./dist/*.tar.gz
./dist/*.whl
- name: Upload package dist and signatures
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f
with:
name: signed-artifacts
path: dist
update-github-release:
name: Update GitHub release with SBOM and signed artifacts
runs-on: ubuntu-24.04
needs:
- sign-artifacts
permissions:
contents: write
steps:
- name: Download SBOM
uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131
with:
name: sbom
- name: Download package dist and signatures
uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131
with:
name: signed-artifacts
path: dist
- name: Update Github release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
gh release upload --repo vacanza/holidays ${{ github.ref_name }} dist/*
gh release upload --repo vacanza/holidays ${{ github.ref_name }} holidays-*-sbom.json
|