Skip to content

Commit ea1044a

Browse files
add workflow that runs tests once a month (#56)
1 parent ca74353 commit ea1044a

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

.github/workflows/periodic_test.yml

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: periodic test
2+
3+
on:
4+
schedule:
5+
# Run every month the 20th when the clock is 13:00 UTC
6+
- cron: '0 13 20 * *'
7+
8+
# Allows you to run this workflow manually from the Actions tab
9+
workflow_dispatch:
10+
11+
jobs:
12+
tests:
13+
runs-on: ubuntu-latest
14+
steps:
15+
- uses: actions/checkout@v2
16+
- run: pip install scipy numpy
17+
- name: "install_nim"
18+
id: install_nim
19+
uses: iffy/[email protected]
20+
- run: nimble install -y
21+
- name: GenBook
22+
run: nimble genbook

0 commit comments

Comments
 (0)