From bbe518a8d1d3411846630b0d75db83584e6470c2 Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Sun, 26 Jun 2022 21:52:47 -0700 Subject: [PATCH] Add a basic daily CI job --- .github/workflows/ci.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..3d4964b --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,18 @@ +name: CI + +on: + push: + branches: [master] + pull_request: + schedule: [cron: "40 1 * * *"] + +jobs: + install: + name: Rust ${{matrix.rust}} + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - uses: ./ + with: + crate: cargo-outdated + - run: cargo outdated --version