Skip to content

CI: test using Python 3.8 #38

CI: test using Python 3.8

CI: test using Python 3.8 #38

Workflow file for this run

name: CI
on:
workflow_dispatch:
push:
pull_request:
jobs:
test:
name: Test Python ${{ matrix.python-version }} on ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ["3.8", "3.x"] # use the oldest supported version and the latest version
runs-on: ${{ matrix.os }}
steps:
- name: 🛒 Checkout
uses: actions/checkout@v3
- name: 🐍 Get Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: 🚚 Get Dependencies
run: |
python -m pip install --upgrade pip
pip install -r src/requirements.txt
- name: 🧪 Run Tests
run: pytest