Skip to content

Commit 45e3710

Browse files
authored
Enable CI tests on pull requests and weekly (#19)
* Pull requests from foreign repositories weren't being tested. :( * Also test master branch on weekly schedule
1 parent 76027db commit 45e3710

File tree

1 file changed

+11
-2
lines changed

1 file changed

+11
-2
lines changed

.github/workflows/tests.yml

+11-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,18 @@
11
name: Tests
2-
on: [push]
2+
on:
3+
push:
4+
branches: [master]
5+
pull_request:
6+
schedule:
7+
# 16:18 UTC on Tuesdays
8+
- cron: "18 16 * * tue"
9+
repository_dispatch:
10+
types: [tests]
11+
312
env:
413
DOCKER_BUILDKIT: 1
5-
jobs:
614

15+
jobs:
716
rust-nightly:
817
runs-on: ubuntu-latest
918
steps:

0 commit comments

Comments
 (0)