Skip to content

remove verbose

remove verbose #4

Workflow file for this run

name: Rust Build and Test CI 🚀
on: [push]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
BUILD_TARGET: [release] # refers to a cargo profile
outputs:
release_built: ${{ steps.set-output.outputs.release_built }}
steps:
- uses: actions/checkout@v4
- name: Build binaries in "${{ matrix.BUILD_TARGET }}" mode
run: cargo build --profile release ${{ matrix.BUILD_TARGET }}

Check failure on line 20 in .github/workflows/build.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/build.yaml

Invalid workflow file

You have an error in your yaml syntax on line 20
- name: Run tests in "${{ matrix.BUILD_TARGET }}" mode
run: cargo test --profile release ${{ matrix.BUILD_TARGET }}
- name: Upload release artifact
-uses: actions/upload-artifact@v4
with:
name: <my-app>
path: target/${{ matrix.BUILD_TARGET }}/<my-app>