Skip to content

Commit

Permalink
Create periodic.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
sgherbst authored Mar 3, 2020
1 parent ec60a95 commit 631b518
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/periodic.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Periodic

on:
schedule:
- cron: 0 0 * * SUN

jobs:
build:

strategy:
matrix:
os: [ubuntu-latest]
rust: [stable, beta, nightly]

runs-on: ${{ matrix.os }}

steps:
- name: Setup Rust
uses: hecrj/setup-rust-action@v1
with:
rust-version: ${{ matrix.rust }}
- name: Checkout
uses: actions/checkout@v1
- name: Run tests
run: cargo test

0 comments on commit 631b518

Please sign in to comment.