Skip to content

chore(deps): update actions/checkout digest to 0ad4b8f #4

chore(deps): update actions/checkout digest to 0ad4b8f

chore(deps): update actions/checkout digest to 0ad4b8f #4

Workflow file for this run

name: MR Checks
on: [pull_request]
jobs:
python-check:
runs-on: windows-2022
strategy:
max-parallel: 3
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4
with:
fetch-depth: 0
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install -U pip poetry nox
poetry --version
nox --version
nox -s preflight