Skip to content

different OS were added in build step #5

different OS were added in build step

different OS were added in build step #5

Workflow file for this run

name: Rust CI/CD Pipeline

Check failure on line 1 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/ci.yml

Invalid workflow file

(Line: 23, Col: 9): There's not enough info to determine what you meant. Add one of these properties: run, shell, uses, with, working-directory
on:
push:
branches: [ "master" ]
types: [ edited ]
pull_request:
branches: [ "master" ]
types: [ opened, synchronize ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
strategy:
matrix:
os: [ ubuntu-latest, macos-13, macos-14, windows-latest ]
runs-on: ${{ matrix.os }}
steps:
- name: Build
- uses: actions/checkout@v4
- name: Build
run: cargo build --verbose