dependency: bump commitizen from 3.30.1 to 3.31.0 #274
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: New pull request received | |
on: | |
pull_request: | |
workflow_dispatch: | |
inputs: | |
git_rev: | |
description: "git revision" | |
required: false | |
default: "" | |
jobs: | |
check: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out | |
uses: actions/checkout@main | |
with: | |
fetch-depth: 0 | |
ref: "${{ github.event.inputs.git_rev }}" | |
- name: Checkout submodules | |
shell: bash | |
run: | | |
auth_header="$(git config --local --get http.https://github.com/.extraheader)" | |
git submodule sync --recursive | |
git -c "http.extraheader=$auth_header" -c protocol.version=2 submodule update --init --force --recursive --depth=1 | |
- name: Set up Python 3.10 | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.10" | |
- name: Install dependencies | |
run: | | |
python -m pip install -U pip pipenv | |
pipenv install --dev | |
- name: Run linters and checks through pre-commit | |
run: | | |
pipenv run inv setup-pre-commit-hooks | |
pipenv run inv run-pre-commit | |
- name: Check whether pelican local pages is buildable | |
run: | | |
pipenv run inv build | |
- name: Check whether pelican public pages is buildable | |
run: | | |
pipenv run inv build-publish |