mirror of
https://github.com/dtolnay/install.git
synced 2024-11-22 16:29:32 +01:00
Add a basic daily CI job
This commit is contained in:
parent
61ed2ef585
commit
bbe518a8d1
1 changed files with 18 additions and 0 deletions
18
.github/workflows/ci.yml
vendored
Normal file
18
.github/workflows/ci.yml
vendored
Normal file
|
@ -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
|
Loading…
Reference in a new issue