Skip to content

Cross-Compilation

Cross-Compilation #365

Workflow file for this run

name: Tests & Lints
on:
push:
branches: [ main, feature ]
pull_request:
branches: [ main, feature ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
name: Build project
strategy:
matrix:
os: [ ubuntu-latest, windows-latest, macos-latest ]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: caching
uses: Swatinem/rust-cache@v2
if: runner.os == ubuntu-latest

Check failure on line 24 in .github/workflows/rust.yml

View workflow run for this annotation

GitHub Actions / Tests & Lints

Invalid workflow file

The workflow is not valid. .github/workflows/rust.yml (Line: 24, Col: 13): Unrecognized named-value: 'ubuntu-latest'. Located at position 14 within expression: runner.os == ubuntu-latest
- name: Build unimarkup
run: cargo build
format:
name: Check Formatting
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Run cargo fmt
run: cargo fmt -- --check
lint:
name: Run Linter (clippy)
runs-on: ubuntu-latest
needs: format
steps:
- uses: actions/checkout@v4
- name: Run linter
run: cargo clippy -- -D warnings
test:
name: Run Tests
runs-on: ubuntu-latest
needs: lint
steps:
- uses: actions/checkout@v4
- name: Run tests
run: cargo test --verbose