Skip to content

Commit

Permalink
Merge pull request #8 from hartwork/run-github-actions-weekly
Browse files Browse the repository at this point in the history
Run GitHub Actions weekly
  • Loading branch information
hartwork authored Oct 28, 2024
2 parents a30e3d5 + a4fc3bf commit bd003f6
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 2 deletions.
9 changes: 8 additions & 1 deletion .github/workflows/python-package.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
name: Python package
on: [pull_request, push]

on:
pull_request:
push:
schedule:
- cron: '0 16 * * 5' # Every Friday 4pm
workflow_dispatch:

jobs:
build:
strategy:
Expand Down
9 changes: 8 additions & 1 deletion .github/workflows/sphinx-build.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
name: Sphinx build
on: [pull_request, push]

on:
pull_request:
push:
schedule:
- cron: '0 16 * * 5' # Every Friday 4pm
workflow_dispatch:

jobs:
docs:
strategy:
Expand Down

0 comments on commit bd003f6

Please sign in to comment.