Skip to content

add py3.11, py3.12

add py3.11, py3.12 #39

Workflow file for this run

name: unichem Testing
on:
workflow_dispatch:
push:
branches:
- main
paths:
- src/bioservices/unichem.py
pull_request:
branches-ignore: []
paths:
- src/bioservices/unichem.py
schedule:
- cron: '0 0 1 * *'
jobs:
build-linux:
runs-on: ubuntu-latest
strategy:
max-parallel: 5
matrix:

Check failure on line 22 in .github/workflows/unichem.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/unichem.yml

Invalid workflow file

You have an error in your yaml syntax on line 22
python: [3.8, 3.9,'3.10' '3.11', '3.12']
fail-fast: false
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.X
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python }}
- name: Install the package itself and dependencies
run: |
pip install poetry
poetry install --with dev
- name: Test with pytest
run: |
poetry run pytest -n 1 --cov-report term --cov=bioservices.unichem test/webservices/test_unichem.py