Skip to content

Merge pull request #8 from plx-pdg/ci-add-windows-platform #4

Merge pull request #8 from plx-pdg/ci-add-windows-platform

Merge pull request #8 from plx-pdg/ci-add-windows-platform #4

Workflow file for this run

name: Rust
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
strategy:

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

View workflow run for this annotation

GitHub Actions / Rust

Invalid workflow file

The workflow is not valid. .github/workflows/rust.yml (Line: 14, Col: 5): Required property is missing: runs-on
matrix:
os: [ubuntu-latest, windows-latest]
steps:
- uses: actions/checkout@v4
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose