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

66 lines
1.9 KiB
YAML
Raw Normal View History

2022-04-18 03:15:23 +08:00
name: CI
on:
push:
pull_request:
schedule: [cron: "40 1 * * *"]
jobs:
install:
2023-02-14 06:21:02 +08:00
name: Rust ${{matrix.rust}} ${{matrix.os}}
runs-on: ${{matrix.os}}
2022-04-18 03:15:23 +08:00
strategy:
fail-fast: false
matrix:
2022-07-22 05:26:47 +08:00
rust: [
# Test with toolchain file override
"1.60",
# Test that the sparse registry check works.
# 1.66 and 1.67 don't support stable sparse registry.
"1.66",
2022-07-22 05:26:47 +08:00
"nightly",
"beta",
"stable",
]
2023-02-14 06:21:02 +08:00
os: [
"ubuntu-latest",
"windows-latest",
"macos-latest",
]
2022-04-18 03:15:23 +08:00
steps:
- uses: actions/checkout@v3
2022-07-22 05:26:47 +08:00
# Test toolchain file support
- name: Write rust-toolchain.toml
run: |
cat <<EOF >>rust-toolchain.toml
[toolchain]
channel = "nightly-2022-09-10"
2022-07-22 05:26:47 +08:00
components = [ "rustfmt", "rustc-dev" ]
targets = [ "wasm32-unknown-unknown", "thumbv7m-none-eabi" ]
2022-07-22 05:26:47 +08:00
profile = "minimal"
EOF
shell: bash
if: matrix.rust == '1.60'
2022-07-22 05:26:47 +08:00
2022-04-18 03:15:23 +08:00
- uses: ./
name: Run actions-rust-lang/setup-rust-toolchain ${{matrix.rust}}
id: toolchain
with:
toolchain: ${{matrix.rust}}
- name: Check ${{'${{steps.toolchain.outputs.rustc-version}}'}}
run: echo '${{steps.toolchain.outputs.rustc-version}}'
- name: Check ${{'${{steps.toolchain.outputs.cargo-version}}'}}
run: echo '${{steps.toolchain.outputs.cargo-version}}'
- name: Check ${{'${{steps.toolchain.outputs.rustup-version}}'}}
run: echo '${{steps.toolchain.outputs.rustup-version}}'
- run: rustc --version && cargo --version
shell: bash
# Test with creating a small project
- run: cargo init . --bin --name ci
# Add tiny empty crate.
# This checks that registry access works.
- run: cargo add serde_as
- run: cargo check