Skip to content

Commit

Permalink
[MRG] run actions regularly (#250)
Browse files Browse the repository at this point in the history
* run actions regularly

* whups
  • Loading branch information
ctb authored Dec 3, 2022
1 parent fcade54 commit cfdf9ee
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions .github/workflows/test.yml → .github/workflows/run_tests.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
name: Test
name: Run tests

on: [push, pull_request]
on:
push:
branches: [latest]
pull_request:
schedule:
- cron: "0 0 * * *" # daily

jobs:
test:
Expand All @@ -13,9 +18,6 @@ jobs:

name: Python on ${{ matrix.python }}

# We want to run on external PRs, but not on our own internal PRs as they'll be run by the push to the branch.
if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository

steps:
- uses: actions/checkout@v3

Expand Down

0 comments on commit cfdf9ee

Please sign in to comment.