on:
workflow_dispatch:
inputs:
platform:
required: true
default: windows-latest
jobs:
test:
runs-on: ${{ github.event.inputs.platform }}
steps:
- uses: actions/checkout@v6 # Update-worthy.
- uses: actions-rs/toolchain@v1 # Update-worthy.
with:
profile: minimal
toolchain: stable
override: true
- uses: actions-rs/cargo@v1 # Update-worthy.
with:
command: test