diff --git a/.github/workflows/rustup.yml b/.github/workflows/rustup.yml new file mode 100644 index 0000000..bc27a61 --- /dev/null +++ b/.github/workflows/rustup.yml @@ -0,0 +1,34 @@ +--- +name: rustup + +on: + pull_request: + +env: + CARGO_TERM_COLOR: always + RUST_TOOLCHAIN_VERSION: "nightly-2025-01-15" + RUSTUP_VERSION: 1.28.1 + +permissions: {} + +jobs: + explicit: + runs-on: ubuntu-latest + steps: + - uses: Techassi/rust-toolchain@test + with: + toolchain: ${{ env.RUST_TOOLCHAIN_VERSION }} + rustup-version: ${{ env.RUSTUP_VERSION }} + - shell: bash + run: | + rustup --version + + latest: + runs-on: ubuntu-latest + steps: + - uses: Techassi/rust-toolchain@test + with: + toolchain: ${{ env.RUST_TOOLCHAIN_VERSION }} + - shell: bash + run: | + rustup --version \ No newline at end of file