Skip to content

chore(deps): update actions/checkout action to v7 #510

chore(deps): update actions/checkout action to v7

chore(deps): update actions/checkout action to v7 #510

Workflow file for this run

name: Import Test
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@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7
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
poetry --version
poetry install -vvv || poetry install -vvv || poetry install -vvv
poetry run pytest