Skip to content

Bump actions/setup-python from 4.7.1 to 5.3.0 #18

Bump actions/setup-python from 4.7.1 to 5.3.0

Bump actions/setup-python from 4.7.1 to 5.3.0 #18

Workflow file for this run

name: PR Test
on:
pull_request:
permissions:
contents: read
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0
- name: Set up Python 3.7
uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b # v5.3.0
with:
python-version: 3.7
- name: Install package
run: pip install .[dev]
- name: Run checks
run: doit black lint mypy
test:
name: Test
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-13]
python-version: [3.7, 3.8, 3.9, "3.10", 3.11]
fail-fast: false
steps:
- name: Checkout repository
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b # v5.3.0
with:
python-version: ${{ matrix.python-version }}
- name: Install package
run: pip install .[dev]
- name: Extract test data
run: doit unpack_tests
- name: Test Releaseherald
run: pytest tests