Skip to content

chore(deps): bump actions/checkout from 3.5.2 to 4.1.1 #151

chore(deps): bump actions/checkout from 3.5.2 to 4.1.1

chore(deps): bump actions/checkout from 3.5.2 to 4.1.1 #151

Workflow file for this run

name: Tests
on:
pull_request:
push:
branches: [master, develop]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4.1.1
- uses: actions/setup-python@v5.0.0
- uses: pre-commit/action@v3.0.0
tests:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10"]
steps:
- uses: actions/checkout@v4.1.1
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5.0.0
with:
python-version: ${{ matrix.python-version }}
- name: Bootstrap poetry
shell: bash
run: curl -sSL https://install.python-poetry.org | python3 -
- name: Configure poetry
shell: bash
run: poetry config virtualenvs.in-project true
- name: Install dependencies
shell: bash
run: poetry install
- name: Run pytest
shell: bash
run: poetry run pytest