Skip to content

Save logging as file #9

Save logging as file

Save logging as file #9

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
- name: lint
run: |
nox -s lint
- name: isort
run: |
nox -s isort
- name: black
run: |
nox -s black