Skip to content

Upgrade to python 3.13.0 #15674

Upgrade to python 3.13.0

Upgrade to python 3.13.0 #15674

Workflow file for this run

name: Pull request
on:
pull_request:
branches: [master]
jobs:
Lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Check formatting
uses: "lgeiger/black-action@master"
with:
args: ". -l 79 --check"
check-version:
name: Check version
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
repository: ${{ github.event.pull_request.head.repo.full_name }}
ref: ${{ github.event.pull_request.head.ref }}
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.12
- name: Build changelog
run: pip install yaml-changelog>=0.1.7 && make changelog
- name: Preview changelog update
run: ".github/get-changelog-diff.sh"
- name: Check version number has been properly updated
run: .github/is-version-number-acceptable.sh
Test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.12", "3.13"]
fail-fast: false
continue-on-error: true
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version

Check failure on line 46 in .github/workflows/pr.yaml

View workflow run for this annotation

GitHub Actions / Pull request

Invalid workflow file

The workflow is not valid. .github/workflows/pr.yaml (Line: 46, Col: 27): The expression is not closed. An unescaped ${{ sequence was found, but the closing }} sequence was not found.
- name: Install package
run: make install
- name: Run non-structural YAML tests
run: make test-yaml-no-structural
env:
POVERTYTRACKER_RAW_URL: ${{ secrets.POVERTYTRACKER_RAW_URL }}
- name: Run structural YAML tests
run: make test-yaml-structural
env:
POVERTYTRACKER_RAW_URL: ${{ secrets.POVERTYTRACKER_RAW_URL }}
- name: Run Python-based tests
run: make test-other
env:
POVERTYTRACKER_RAW_URL: ${{ secrets.POVERTYTRACKER_RAW_URL }}
- name: Check model speed
run: make compare-speed
- name: Produce combined coverage repository
run: make coverage
- uses: codecov/codecov-action@v4
- name: Build package
run: make