1414# limitations under the License.
1515
1616name : Python package
17- on : [push, pull_request]
17+ on : [ push, pull_request ]
1818
1919env :
2020 IGNITE_VERSION : 2.14.0
2323jobs :
2424 build :
2525 runs-on : ubuntu-latest
26+ continue-on-error : true
2627 strategy :
28+ fail-fast : false
2729 matrix :
2830 cfg :
29- - {python: "3.7", toxenv: "py37"}
30- - {python: "3.8", toxenv: "py38"}
31- - {python: "3.9", toxenv: "py39"}
32- - {python: "3.10", toxenv: "py310"}
33- - {python: "3.11", toxenv: "py311"}
34- - {python: "3.11", toxenv: "codestyle"}
31+ - { python: "3.7", toxenv: "py37" }
32+ - { python: "3.8", toxenv: "py38" }
33+ - { python: "3.9", toxenv: "py39" }
34+ - { python: "3.10", toxenv: "py310" }
35+ - { python: "3.11", toxenv: "py311" }
36+ - { python: "3.11", toxenv: "codestyle" }
3537
3638 steps :
3739 - uses : actions/checkout@v3
@@ -41,16 +43,16 @@ jobs:
4143 python-version : ${{ matrix.cfg.python}}
4244 - name : Install Apache Ignite
4345 run : |
44- curl -L https://apache-mirror.rbc.ru/pub/apache/ignite/${IGNITE_VERSION}/apache-ignite-slim-${IGNITE_VERSION}-bin.zip > ignite.zip
45- unzip ignite.zip -d /opt
46- mv /opt/apache-ignite-slim-${IGNITE_VERSION}-bin /opt/ignite
47- mv /opt/ignite/libs/optional/ignite-log4j2 /opt/ignite/libs/
46+ curl -L https://apache-mirror.rbc.ru/pub/apache/ignite/${IGNITE_VERSION}/apache-ignite-slim-${IGNITE_VERSION}-bin.zip > ignite.zip
47+ unzip ignite.zip -d /opt
48+ mv /opt/apache-ignite-slim-${IGNITE_VERSION}-bin /opt/ignite
49+ mv /opt/ignite/libs/optional/ignite-log4j2 /opt/ignite/libs/
4850
4951 - name : Install tox
5052 run : |
5153 pip install tox
5254
5355 - name : Run tests
5456 run : |
55- pip install tox
56- tox -e ${{ matrix.cfg.toxenv }}
57+ pip install tox
58+ tox -e ${{ matrix.cfg.toxenv }}
0 commit comments