Skip to content
This repository has been archived by the owner on Jul 23, 2024. It is now read-only.

Setup rust

Setup rust #9

Workflow file for this run

# Automatically build the project and run any configured tests for every push
# and submitted pull request. This can help catch issues that only occur on
# certain platforms or Java versions, and provides a first line of defence
# against bad commits.
name: Setup rust
on:
workflow_dispatch:
push:
jobs:
setup:
runs-on: ${{ matrix.os }}
continue-on-error: true
strategy:
matrix:
os:
- ubuntu-latest
- macos-latest
- windows-latest
steps:
- id: checkout
name: Checkout
uses: actions/checkout@v3
- id: setup-rust
name: Setup Rust
uses: ./
- id: verify-rust
name: Verify Cargo
run: |
cargo version