Skip to content

Commit

Permalink
Merge pull request #137 from EwoutH/ci-weekly
Browse files Browse the repository at this point in the history
CI: Add weekly scheduled jobs and manual trigger
  • Loading branch information
quaquel authored May 30, 2022
2 parents a83533a + 9a178cb commit f425154
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 5 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,12 @@
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions

name: Build and Test

on: [push, pull_request]
on:
push:
pull_request:
workflow_dispatch:
schedule:
- cron: '0 6 * * 1'

jobs:
build:
Expand Down
10 changes: 7 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,14 @@
name: Build distribution

on: [push, pull_request]
on:
push:
pull_request:
workflow_dispatch:
schedule:
- cron: '0 6 * * 1'

jobs:
test:
runs-on: "ubuntu-latest"
runs-on: ubuntu-latest

steps:
- name: Checkout source
Expand Down

0 comments on commit f425154

Please sign in to comment.