Skip to content

Updating workflow tests for new format #716

Updating workflow tests for new format

Updating workflow tests for new format #716

Workflow file for this run

name: automated tests
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]
steps:
- name: checkout
uses: actions/checkout@main
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
architecture: x64
- name: install environment
run: |
python -m pip install --upgrade pip
pip install --quiet .
pip install --quiet pytest
# ===== Tests =====
- name: all tests
run: pytest --quiet tests/*