-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add runner as an option to all workflows
- Loading branch information
1 parent
56677fe
commit ea28174
Showing
5 changed files
with
43 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,25 @@ | ||
name: CI | ||
|
||
# Scheduled workflows will only run on the default branch. | ||
on: | ||
schedule: | ||
workflow_dispatch: | ||
# Scheduled workflows will only run on the default branch. | ||
schedule: | ||
- cron: '0 0 * * *' # runs once a day at midnight in the timezone of your GitHub repository | ||
|
||
jobs: | ||
build: | ||
runs-on: [windows-latest, macos-latest] | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v2 | ||
# your steps go here | ||
|
||
# doctest: | ||
# uses: ./.github/workflows/doctest.yml | ||
# secrets: inherit | ||
lint: | ||
uses: ./.github/workflows/lint.yml | ||
with: | ||
runner: "['windows-latest', 'macos-latest']" | ||
secrets: inherit | ||
# test: | ||
# uses: ./.github/workflows/test.yml | ||
# secrets: inherit | ||
# run-notebooks: | ||
# uses: ./.github/workflows/run_notebooks.yml | ||
# secrets: inherit | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters