Skip to content

Commit

Permalink
Merge branch 'feature/clustering' of https://github.com/psykei/psyke-…
Browse files Browse the repository at this point in the history
…python into feature/clustering
  • Loading branch information
sabbatinif committed Aug 3, 2022
2 parents c2ec3df + 4746005 commit 8984103
Showing 1 changed file with 17 additions and 4 deletions.
21 changes: 17 additions & 4 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,18 @@
name: check
on:
push:
branches:
- master
- develop
- 'feature/**'
tags: '*'
branches-ignore:
- 'autodelivery**'
- 'bump-**'
- 'renovate/**'
- 'dependabot/**'
paths-ignore:
- 'CHANGELOG.md'
- 'renovate.json'
- '.gitignore'
pull_request:
workflow_dispatch:
env:
PROJECT_NAME: psyke-python
WORKFLOW: check
Expand Down Expand Up @@ -46,6 +54,7 @@ jobs:
(git push) || echo 'nothing to push'
run-unit-tests:
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
Expand All @@ -62,6 +71,10 @@ jobs:
- '3.9.7'
runs-on: ${{ matrix.os }}
name: Run tests on Python ${{ matrix.python-version }}, on ${{ matrix.os }}
timeout-minutes: 45
concurrency:
group: ${{ github.workflow }}-run-unit-tests-${{ matrix.python-version }}-${{ matrix.os }}-${{ github.event.number || github.ref }}
cancel-in-progress: true
needs:
- create-test-predictors-if-needed
steps:
Expand Down

0 comments on commit 8984103

Please sign in to comment.