Skip to content

chore: add minimal CI, again... #2

chore: add minimal CI, again...

chore: add minimal CI, again... #2

Workflow file for this run

name: Rust
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:

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

View workflow run for this annotation

GitHub Actions / .github/workflows/rust.yml

Invalid workflow file

You have an error in your yaml syntax on line 17
- uses: actions/checkout@v3
- name: Show cargo version
run: cargo --version
- name: Fetch
run: |
cargo fetch --locked
- name: Build
run: |
cargo build --release --frozen
- name: Test
run: |
cargo test --release --frozen --workspace