Skip to content

Commit 737aa9d

Browse files
authored
Separate Nightly workflow (#488)
1 parent fdcd5c6 commit 737aa9d

File tree

2 files changed

+11
-4
lines changed

2 files changed

+11
-4
lines changed

.github/workflows/actions.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: gh
1+
name: Main
22

33
on:
44
create: # is used for publishing to PyPI and TestPyPI
@@ -12,13 +12,11 @@ on:
1212
- >-
1313
**
1414
pull_request:
15-
schedule:
16-
- cron: '1 0 * * *' # Run daily at 0:01 UTC
1715

1816
jobs:
1917
build_docs:
2018
name: Build Docs
21-
runs-on: ubuntu-18.04
19+
runs-on: ubuntu-latest
2220
steps:
2321
- uses: actions/checkout@master
2422
- name: Set up Python

.github/workflows/nightly.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
name: Nightly tests
2+
3+
on:
4+
schedule:
5+
- cron: '1 0 * * *' # Run daily at 0:01 UTC
6+
7+
jobs:
8+
tests:
9+
uses: pytest-dev/pytest-html/.github/workflows/tests.yml@master

0 commit comments

Comments
 (0)