Skip to content

Commit

Permalink
Coveralls, multiple python versions
Browse files Browse the repository at this point in the history
- Tox requires you to pre-install the Python interpreters
- Coveralls needs a program to be installed
  • Loading branch information
ajjackson committed Oct 8, 2024
1 parent 9d5de7b commit ab9eaaa
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,16 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.10"
python-version: |
'3.9'
'3.10'
'3.12'
- name: Install dependencies
run: |
sudo apt-get install libblas-dev liblapack-dev libxc-dev
python -m pip install --upgrade pip
python -m pip install tox
python -m pip install tox coveralls
- name: Test with tox / unittest / coverage
run: |
Expand Down

0 comments on commit ab9eaaa

Please sign in to comment.