Skip to content

chore(deps): update actions/create-github-app-token action to v1.9.3 #203

chore(deps): update actions/create-github-app-token action to v1.9.3

chore(deps): update actions/create-github-app-token action to v1.9.3 #203

Workflow file for this run

name: CI
concurrency:
cancel-in-progress: true
group: ${{ github.workflow }}-${{ github.ref }}
jobs:
ci:
if: ${{ !cancelled() && ! failure() }}
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
with:
fetch-depth: 0
- uses: pdm-project/setup-pdm@c050bdcb2405837648035b6678c75609d53a749f # v4
with:
cache: true
python-version: ${{ matrix.python-version }}
version: 2.13.2
- id: pages
name: Setup pages
uses: actions/configure-pages@983d7736d9b0ae728b81ab479565c72886d7745b # v5.0.0
- run: env | sort
- run: make dev
- run: make lint
- run: make test
- run: CI_PAGES_URL=${{ steps.pages.outputs.base_url }} make doc
- run: make build
strategy:
matrix:
python-version:
- "3.8"
- "3.9"
- "3.10"
- "3.11"
- "3.12"
consistency:
if: ${{ !cancelled() && ! failure() }}
runs-on: ubuntu-22.04
steps:
- run: env | sort
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
- name: Set up Git
run: |
git config --global user.name github-actions
git config --global user.email [email protected]
- run: pipx install copier==9.1.1
- run: make consistency
- run: git diff
- run: git status --porcelain
- run: test -z "$(git status --porcelain)"
on:
pull_request:
types:
- opened
- synchronize
push:
branches:
- main