mirror of
https://github.com/dtolnay/rust-toolchain.git
synced 2024-11-14 05:26:34 +02:00
26 lines
581 B
YAML
26 lines
581 B
YAML
|
name: CI
|
||
|
|
||
|
on:
|
||
|
push:
|
||
|
pull_request:
|
||
|
schedule: [cron: "40 1 * * *"]
|
||
|
|
||
|
jobs:
|
||
|
install:
|
||
|
name: Rust ${{matrix.rust}}
|
||
|
runs-on: ubuntu-latest
|
||
|
strategy:
|
||
|
fail-fast: false
|
||
|
matrix:
|
||
|
rust: [nightly, beta, stable]
|
||
|
steps:
|
||
|
- uses: actions/checkout@v2
|
||
|
- uses: ./
|
||
|
name: Run dtolnay/rust-toolchain@${{matrix.rust}}
|
||
|
id: toolchain
|
||
|
with:
|
||
|
toolchain: ${{matrix.rust}}
|
||
|
- name: Check ${{'${{steps.toolchain.outputs.version}}'}}
|
||
|
run: echo '${{steps.toolchain.outputs.version}}'
|
||
|
- run: rustc --version
|