Fix/fork chores #18
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI Test - stable & nightly | |
on: | |
- pull_request | |
jobs: | |
install_on_runner: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: | |
- ubuntu-latest | |
- macOS-latest | |
- windows-latest | |
toolchain: | |
- stable | |
- nightly | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Use myself | |
id: toolchain | |
uses: ./ | |
with: | |
toolchain: ${{ matrix.toolchain }} | |
profile: minimal | |
override: true | |
- name: Test action outputs | |
env: | |
RUSTC: ${{ steps.toolchain.outputs.rustc }} | |
RUSTC_HASH: ${{ steps.toolchain.outputs.rustc_hash }} | |
CARGO: ${{ steps.toolchain.outputs.cargo }} | |
RUSTUP: ${{ steps.toolchain.outputs.rustup }} | |
run: | | |
echo $RUSTC | |
echo $RUSTC_HASH | |
echo $CARGO | |
echo $RUSTUP | |
install_in_docker: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
toolchain: | |
- stable | |
- nightly | |
# Docker image, not the GitHub Actions VM | |
container: ubuntu:latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
# `rustup` will need `curl` or `wget` later | |
- name: Install packages | |
run: apt-get update && apt-get install -y curl | |
- name: Use myself | |
id: toolchain | |
uses: ./ | |
with: | |
toolchain: ${{ matrix.toolchain }} | |
profile: minimal | |
override: true | |
- name: Test action outputs | |
env: | |
RUSTC: ${{ steps.toolchain.outputs.rustc }} | |
RUSTC_HASH: ${{ steps.toolchain.outputs.rustc_hash }} | |
CARGO: ${{ steps.toolchain.outputs.cargo }} | |
RUSTUP: ${{ steps.toolchain.outputs.rustup }} | |
run: | | |
echo $RUSTC | |
echo $RUSTC_HASH | |
echo $CARGO | |
echo $RUSTUP |