2022-06-26 21:52:47 -07:00
|
|
|
name: CI
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: [master]
|
|
|
|
pull_request:
|
2023-02-18 17:17:51 -08:00
|
|
|
workflow_dispatch:
|
2022-06-26 21:52:47 -07:00
|
|
|
schedule: [cron: "40 1 * * *"]
|
|
|
|
|
2022-09-02 15:09:29 -07:00
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
|
2022-06-26 21:52:47 -07:00
|
|
|
jobs:
|
|
|
|
install:
|
2024-04-14 10:12:12 -07:00
|
|
|
name: Install
|
2022-06-26 21:52:47 -07:00
|
|
|
runs-on: ubuntu-latest
|
2022-11-24 21:35:28 -08:00
|
|
|
timeout-minutes: 45
|
2022-06-26 21:52:47 -07:00
|
|
|
steps:
|
2023-09-04 22:34:58 -07:00
|
|
|
- uses: actions/checkout@v4
|
2022-06-26 21:52:47 -07:00
|
|
|
- uses: ./
|
|
|
|
with:
|
|
|
|
crate: cargo-outdated
|
|
|
|
- run: cargo outdated --version
|