Skip to content

Update actions/checkout action to v4 #56

Update actions/checkout action to v4

Update actions/checkout action to v4 #56

Workflow file for this run

name: Pytest
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.x', '3.10.x']
name: Python ${{ matrix.python-version }}
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install pytest
run: |
python -m pip install --upgrade pip
pip install pytest
- name: Install requierments
run: |
pip install -r requirements.txt
- name: Test with pytest
run: pytest -vv