Skip to content

Commit

Permalink
Separate Nightly workflow (#488)
Browse files Browse the repository at this point in the history
  • Loading branch information
BeyondEvil committed Jan 25, 2022
1 parent fdcd5c6 commit 737aa9d
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 4 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/actions.yml
@@ -1,4 +1,4 @@
name: gh
name: Main

on:
create: # is used for publishing to PyPI and TestPyPI
Expand All @@ -12,13 +12,11 @@ on:
- >-
**
pull_request:
schedule:
- cron: '1 0 * * *' # Run daily at 0:01 UTC

jobs:
build_docs:
name: Build Docs
runs-on: ubuntu-18.04
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Set up Python
Expand Down
9 changes: 9 additions & 0 deletions .github/workflows/nightly.yml
@@ -0,0 +1,9 @@
name: Nightly tests

on:
schedule:
- cron: '1 0 * * *' # Run daily at 0:01 UTC

jobs:
tests:
uses: pytest-dev/pytest-html/.github/workflows/tests.yml@master

0 comments on commit 737aa9d

Please sign in to comment.