Skip to content

Commit

Permalink
add workflow that runs tests once a month (#56)
Browse files Browse the repository at this point in the history
  • Loading branch information
HugoGranstrom authored Mar 29, 2024
1 parent ca74353 commit ea1044a
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/periodic_test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: periodic test

on:
schedule:
# Run every month the 20th when the clock is 13:00 UTC
- cron: '0 13 20 * *'

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- run: pip install scipy numpy
- name: "install_nim"
id: install_nim
uses: iffy/install-nim@v4.1.1
- run: nimble install -y
- name: GenBook
run: nimble genbook

0 comments on commit ea1044a

Please sign in to comment.