Fix a small typo in coreutils_core/Cargo.toml #651
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: FreeBSD | |
on: [push, pull_request] | |
jobs: | |
check: | |
name: FreeBSD | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
rust: [1.61.0, stable] | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@v3 | |
- name: Install Rust toolchain | |
uses: dtolnay/rust-toolchain@master | |
with: | |
toolchain: ${{ matrix.rust }} | |
target: x86_64-unknown-freebsd | |
- name: Setup TOML | |
run: cp FreeBSD.toml Cargo.toml | |
- name: Check FreeBSD | |
run: cargo check --target x86_64-unknown-freebsd |