Skip to content

ci: add tests for python3.11 and python3.12. Fix some tests #86

ci: add tests for python3.11 and python3.12. Fix some tests

ci: add tests for python3.11 and python3.12. Fix some tests #86

Workflow file for this run

name: Python CI
on:
push:
branches:
- main
- '**'
pull_request:
branches:
- main
- '**'
jobs:
build:
name: tests
runs-on: ubuntu-latest
strategy:
matrix:

Check failure on line 18 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / Python CI

Invalid workflow file

The workflow is not valid. .github/workflows/ci.yml (Line: 18, Col: 14): Unexpected value '' .github/workflows/ci.yml (Line: 19, Col: 7): Unexpected value 'python-version'
python-version: ["3.8", "3.11", "3.12"]
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.8
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Install dependencies
run: |
make requirements
- name: Run quality suite
run: |
make quality
- name: Run unittest suite
run: |
make test