From 631b5189b8d8608d3856d44d97e92b94ce1ce9bf Mon Sep 17 00:00:00 2001 From: Steven Herbst Date: Mon, 2 Mar 2020 16:39:41 -0800 Subject: [PATCH] Create periodic.yml --- .github/workflows/periodic.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .github/workflows/periodic.yml diff --git a/.github/workflows/periodic.yml b/.github/workflows/periodic.yml new file mode 100644 index 0000000..b29bc57 --- /dev/null +++ b/.github/workflows/periodic.yml @@ -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