2022-06-27 06:52:47 +02:00
|
|
|
name: CI
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: [master]
|
|
|
|
pull_request:
|
2023-02-19 02:17:51 +01:00
|
|
|
workflow_dispatch:
|
2022-06-27 06:52:47 +02:00
|
|
|
schedule: [cron: "40 1 * * *"]
|
|
|
|
|
2022-09-03 00:09:29 +02:00
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
|
2022-06-27 06:52:47 +02:00
|
|
|
jobs:
|
|
|
|
install:
|
|
|
|
name: Rust ${{matrix.rust}}
|
|
|
|
runs-on: ubuntu-latest
|
2022-11-25 06:35:28 +01:00
|
|
|
timeout-minutes: 45
|
2022-06-27 06:52:47 +02:00
|
|
|
steps:
|
2023-09-05 07:34:58 +02:00
|
|
|
- uses: actions/checkout@v4
|
2022-06-27 06:52:47 +02:00
|
|
|
- uses: ./
|
|
|
|
with:
|
|
|
|
crate: cargo-outdated
|
|
|
|
- run: cargo outdated --version
|