Skip to content

Commit

Permalink
attempt to update github action
Browse files Browse the repository at this point in the history
  • Loading branch information
pabdavis committed Jun 3, 2024
1 parent 6ab3f1f commit 916ddfc
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,17 +12,17 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.8, 3.9, 3.10.4]
python-version: [3.8, 3.9, 3.10.4, 3.11]

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install system dependencies
run: |
sudo apt-get install gcc gfortran libopenblas-dev liblapack-dev cython
sudo apt-get install gcc gfortran libopenblas-dev liblapack-dev cython3
python -m pip install --upgrade pip
pip install poetry
- name: Install dependencies
Expand All @@ -44,7 +44,7 @@ jobs:
run: poetry run coverage report --fail-under=80

- name: Upload HTML report if check failed.
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: html-report
path: htmlcov
Expand Down

0 comments on commit 916ddfc

Please sign in to comment.