Skip to content

build(deps): update dependency pyproject-fmt to v2.2.4 #1869

build(deps): update dependency pyproject-fmt to v2.2.4

build(deps): update dependency pyproject-fmt to v2.2.4 #1869

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- main
concurrency:
cancel-in-progress: true
group: ${{ github.workflow }}-${{ github.ref }}
jobs:
ci:
if: ${{ !cancelled() && ! failure() }}
runs-on: ${{ matrix.os }}
steps:
- name: Checkout repository
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
with:
fetch-depth: 0
- name: Set up PDM
uses: pdm-project/setup-pdm@568ddd69406b30de1774ec0044b73ae06e716aa4 # v4
with:
cache: true
python-version: ${{ matrix.python-version }}
version: 2.18.2
- run: env | sort
- run: make prerequisites
- run: make dev
- run: make lint test doc build
strategy:
matrix:
os:
# renovate: github-runner
- macos-14
# renovate: github-runner
- ubuntu-22.04
# renovate: github-runner
- windows-2022
python-version:
- '3.8'
- '3.9'
- '3.10'
- '3.11'
- '3.12'
# Python 3.8 and 3.9 do not run on macos-14 which is using arm64 hardware.
exclude:
# renovate: github-runner
- os: macos-14
python-version: '3.8'
# renovate: github-runner
- os: macos-14
python-version: '3.9'
include:
- os: macos-13
python-version: '3.8'
- os: macos-13
python-version: '3.9'
consistency:
if: ${{ !cancelled() && ! failure() }}
runs-on: ubuntu-22.04
steps:
- run: env | sort
- name: Checkout repository
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- name: Set up Git
run: |
git config --global user.name github-actions
git config --global user.email [email protected]
- run: pipx install copier==9.3.1
- run: make template-build
- run: git diff
- run: git status --porcelain
- run: test -z "$(git status --porcelain)"