Skip to content

Add venv to instructions. #14

Add venv to instructions.

Add venv to instructions. #14

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
test-and-coverage:
strategy:
matrix:
os: [macos-latest, windows-latest, ubuntu-latest]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
runs-on: ${{ matrix.os }}
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install Python requirements
run: pip install -r requirements.txt
- name: Test
run: pytest --cov
- name: Upload coverage to Coveralls
if: matrix.os == 'ubuntu-latest' && matrix.python-version == '3.12'
uses: coverallsapp/github-action@v2