Try to fix make.bat for Windows 11 #8381
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: changelog | |
on: | |
pull_request: | |
types: [opened, synchronize, labeled, unlabeled, reopened] | |
branches-ignore: | |
- "maintenance/**" | |
env: | |
CACHE_VERSION: 1 | |
KEY_PREFIX: base-venv | |
DEFAULT_PYTHON: "3.13" | |
permissions: | |
contents: read | |
jobs: | |
check-changelog: | |
if: contains(github.event.pull_request.labels.*.name, 'skip news :mute:') != true | |
name: Changelog Entry Check | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
steps: | |
- name: Check out code from GitHub | |
uses: actions/checkout@v4.2.2 | |
with: | |
# `towncrier check` runs `git diff --name-only origin/main...`, which | |
# needs a non-shallow clone. | |
fetch-depth: 0 | |
- name: Set up Python ${{ env.DEFAULT_PYTHON }} | |
id: python | |
uses: actions/setup-python@v5.3.0 | |
with: | |
python-version: ${{ env.DEFAULT_PYTHON }} | |
check-latest: true | |
- name: Generate partial Python venv restore key | |
id: generate-python-key | |
run: >- | |
echo "key=${{ env.KEY_PREFIX }}-${{ env.CACHE_VERSION }}-${{ | |
hashFiles('pyproject.toml', 'requirements_test.txt', | |
'requirements_test_min.txt', 'requirements_test_pre_commit.txt') }}" >> | |
$GITHUB_OUTPUT | |
- name: Restore Python virtual environment | |
id: cache-venv | |
uses: actions/cache@v4.1.2 | |
with: | |
path: venv | |
key: >- | |
${{ runner.os }}-${{ steps.python.outputs.python-version }}-${{ | |
steps.generate-python-key.outputs.key }} | |
- name: Create Python virtual environment | |
if: steps.cache-venv.outputs.cache-hit != 'true' | |
run: | | |
python -m venv venv | |
. venv/bin/activate | |
python -m pip install -U pip setuptools wheel | |
pip install -U -r requirements_test.txt | |
pip install -U -r doc/requirements.txt | |
- name: Emit warning if news fragment is missing | |
env: | |
BASE_BRANCH: ${{ github.base_ref }} | |
run: | | |
# Fetch the pull request' base branch so towncrier will be able to | |
# compare the current branch with the base branch. | |
git fetch --no-tags origin +refs/heads/${BASE_BRANCH}:refs/remotes/origin/${BASE_BRANCH} | |
. venv/bin/activate | |
towncrier check --compare-with origin/${{ github.base_ref }} |