Skip to content

Commit

Permalink
add scheduled unit tests workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
pysel committed Nov 13, 2023
1 parent ca4ff20 commit 12d739d
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/scheduled-unit-tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: Scheduled Unit Tests

on:
schedule:
- cron: '0 10 1,15 * *' # Run on 1st and 15th days of every month at 10:00 UTC

jobs:
unit-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- name: Run tests
run: make unit

0 comments on commit 12d739d

Please sign in to comment.