Skip to content

Create rust.yml

Create rust.yml #4

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

Check failure on line 15 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 15
steps:
- uses: actions/checkout@v4
- name: Build dev
run: cargo build --profile dev --verbose
- name: Build release
run: cargo build --profile release --verbose
- name: Run tests
run: cargo test --verbose