Skip to content

Commit

Permalink
Test on multiple Python versions
Browse files Browse the repository at this point in the history
  • Loading branch information
avaucher committed Aug 2, 2023
1 parent 91fad44 commit 83c214c
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,16 @@ on: [push, pull_request]
jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
name: Style, pytest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.7
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: 3.7
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: pip install -e .[dev,rdkit]
- name: Check black
Expand Down

0 comments on commit 83c214c

Please sign in to comment.