We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 07f81bc commit dd47616Copy full SHA for dd47616
.github/workflows/tests.yml
@@ -11,6 +11,15 @@ on:
11
pull_request:
12
branches:
13
- '*'
14
+
15
+ workflow_call:
16
+ inputs:
17
+ pip_git:
18
+ description: "Whether or not to install tardis using git"
19
+ required: false
20
+ type: boolean
21
+ default: false
22
23
schedule:
24
- cron: '0 0 * * 0' # run at midnight every Sunday
25
@@ -35,7 +44,6 @@ env:
35
44
36
45
jobs:
37
46
build:
38
- if: github.repository_owner == 'tardis-sn'
39
47
strategy:
40
48
matrix:
41
49
pip: [true, false]
@@ -109,4 +117,4 @@ jobs:
109
117
run: pytest carsus ${{ env.PYTEST_FLAGS }}
110
118
111
119
- name: Upload to Codecov
112
- run: bash <(curl -s https://codecov.io/bash)
120
+ run: bash <(curl -s https://codecov.io/bash)
0 commit comments