Skip to content

feat: setup maintainable project #2

feat: setup maintainable project

feat: setup maintainable project #2

Workflow file for this run

name: Run all the unit tests
on:
push:
branches: [main]
pull_request:
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 10
strategy:
matrix:
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip install -U pip
pip install .
pip install -r requirements/testing.txt
- name: Run tests
run: |
pytest