Skip to content

Commit

Permalink
Upgrade GitHub Actions (#96)
Browse files Browse the repository at this point in the history
* Upgrade GitHub Actions

* Update test_NormalizingRecursiveExpansionNode.py

* Update test_RecursiveExpansionNode.py

* Update test_NormalizingRecursiveExpansionNode.py

* strategy: fail-fast: false
  • Loading branch information
cclauss committed Feb 19, 2023
1 parent 4f2062b commit f9c8c51
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 6 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,16 @@ jobs:

runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
python-version: [3.7, 3.8, 3.9, "3.10"]
python-version: [3.7, 3.8, 3.9, "3.10", 3.11]
extras: ["", "[joblib,scikit-learn,scipy,libsvm,pytest]"]

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
Expand All @@ -33,7 +34,7 @@ jobs:
python -m pytest --cov-config=.coveragerc --cov=mdp --seed=725021957 mdp
python -m pytest --cov-config=.coveragerc --cov=bimdp --cov-append --seed=725021957 bimdp
- name: "Upload coverage to Codecov"
uses: codecov/codecov-action@v1
uses: codecov/codecov-action@v3
with:
fail_ci_if_error: true

Expand Down
1 change: 0 additions & 1 deletion mdp/test/test_NormalizingRecursiveExpansionNode.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
from mdp.nodes.recursive_expansion_nodes import recfs
from mdp.test._tools import *
from mdp import numx as np
import py.test


def test_NormalizingRecursiveExpansionNode():
Expand Down
1 change: 0 additions & 1 deletion mdp/test/test_RecursiveExpansionNode.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
from mdp.nodes.recursive_expansion_nodes import recfs
from mdp.test._tools import *
from mdp import numx as np
import py.test


def test_RecursiveExpansionNode1():
Expand Down

0 comments on commit f9c8c51

Please sign in to comment.