Skip to content

General cleanup, add VSCode devcontainers, fix lint issues, deprecate… #1

General cleanup, add VSCode devcontainers, fix lint issues, deprecate…

General cleanup, add VSCode devcontainers, fix lint issues, deprecate… #1

Workflow file for this run

name: Test
on:
push:
jobs:
build:
name: Test
runs-on: ubuntu-latest
runs-on: ${{ matrix.os }}

Check failure on line 10 in .github/workflows/test.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/test.yml

Invalid workflow file

You have an error in your yaml syntax on line 10
strategy:
fail-fast: false
matrix:
py:
- "3.12"
- "3.11"
- "3.10"
- "3.9"
- "3.8"
os:
- ubuntu-latest
# - macos-latest
# - windows-latest
steps:
- name: Checkout master
uses: actions/checkout@v4
- name: Setup python for test ${{ matrix.py }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.py }}
- name: Install python dependencies
shell: bash
run: pip install --upgrade --upgrade-strategy eager -r requirements.txt
- name: Run tests
run: tox -e py