Skip to content

Rename codiga.yml to codiga.yml (#20) #11

Rename codiga.yml to codiga.yml (#20)

Rename codiga.yml to codiga.yml (#20) #11

Workflow file for this run

name: pytest (run tests)
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements-dev.txt
- name: Run tests and collect coverage
run: pytest