Skip to content

ci

ci #14

Workflow file for this run

name: Rust
on:
push:
pull_request:
env:
CARGO_TERM_COLOR: always
jobs:
check:
runs-on: ${{ matrix.os }}
strategy:
matrix:

Check failure on line 15 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: 15, Col: 14): Unexpected value '' .github/workflows/rust.yml (Line: 16, Col: 7): Unexpected value 'os'
os: [ubuntu-latest, windows-latest, macos-latest]
build_type: [Release]
steps:
- name: checkout
uses: actions/checkout@v3
with:
submodules: 'true'
- name: unzip resources
run: |
cd src
Expand-Archive -Path .\metadata-resources.zip -DestinationPath .\
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- run: cargo build
- run: cargo test