Skip to content
This repository has been archived by the owner on Sep 13, 2023. It is now read-only.

Commit

Permalink
CI - fix matrix conditions (#699)
Browse files Browse the repository at this point in the history
  • Loading branch information
omesser authored Jul 21, 2023
1 parent 414e7fc commit a726314
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/check-test-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -89,11 +89,11 @@ jobs:
run: |
pip install --upgrade pip setuptools wheel
pip install pre-commit .[tests]
- if: matrix.os == 'ubuntu-latest' && matrix.python == '3.10'
- if: contains(matrix.os, 'ubuntu') && matrix.python == '3.10'
run: pre-commit run pylint -a -v --show-diff-on-failure
- name: Run Heroku tests
if: |
matrix.os == 'ubuntu-latest' &&
contains(matrix.os, 'ubuntu') &&
matrix.python == '3.8' &&
(
github.event_name == 'schedule' ||
Expand All @@ -106,12 +106,12 @@ jobs:
HEROKU_TEAM: iterative-sandbox
- name: Setup Flyio
uses: superfly/flyctl-actions/setup-flyctl@master
if: matrix.os == 'ubuntu-latest' && matrix.python == '3.9'
if: contains(matrix.os, 'ubuntu') && matrix.python == '3.9'
- name: Run Flyio tests
if: matrix.os == 'ubuntu-latest' && matrix.python == '3.9'
if: contains(matrix.os, 'ubuntu') && matrix.python == '3.9'
run: pytest -k 'flyio'
- name: Start minikube
if: matrix.os == 'ubuntu-latest' && matrix.python == '3.9'
if: contains(matrix.os, 'ubuntu') && matrix.python == '3.9'
uses: medyagh/setup-minikube@master
- name: Run tests
timeout-minutes: 40
Expand Down

0 comments on commit a726314

Please sign in to comment.