We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fdcd5c6 commit 737aa9dCopy full SHA for 737aa9d
.github/workflows/actions.yml
@@ -1,4 +1,4 @@
1
-name: gh
+name: Main
2
3
on:
4
create: # is used for publishing to PyPI and TestPyPI
@@ -12,13 +12,11 @@ on:
12
- >-
13
**
14
pull_request:
15
- schedule:
16
- - cron: '1 0 * * *' # Run daily at 0:01 UTC
17
18
jobs:
19
build_docs:
20
name: Build Docs
21
- runs-on: ubuntu-18.04
+ runs-on: ubuntu-latest
22
steps:
23
- uses: actions/checkout@master
24
- name: Set up Python
.github/workflows/nightly.yml
@@ -0,0 +1,9 @@
+name: Nightly tests
+
+on:
+ 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