Skip to content

setup: Fix packages definition for Python 3.12 #26

setup: Fix packages definition for Python 3.12

setup: Fix packages definition for Python 3.12 #26

Workflow file for this run

name: Python tests
on: ["push", "pull_request"]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.7.11", "3.8.11", "3.9.6"]
steps:
- name: Check out code
uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e .
pip install -r requirements.txt
- name: Run tests
run: |
coverage run mrcrowbar/tests.py
- name: Upload to Coveralls
run: |
coveralls --service=github
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}