rust-toolchain/.github/workflows/ci.yml

27 lines
604 B
YAML
Raw Normal View History

2021-12-27 20:24:34 +02:00
name: CI
on:
push:
branches: [master]
2021-12-27 20:24:34 +02:00
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]
2021-12-27 20:24:34 +02:00
steps:
2022-04-25 04:31:38 +03:00
- uses: actions/checkout@v3
2021-12-27 20:24:34 +02:00
- 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