Skip to content

doc: rust backtrace #105

doc: rust backtrace

doc: rust backtrace #105

Workflow file for this run

name: Rust Build Projects
on:
push:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
projects: ["functions",
"guessing_game",
"hello_cargo",
"hello-world",
"ownership",
"variables",
"structs",
"rectangles",
"enum-pattern-matching",
"backyard",
"my-project",
"restaurant",
"collections"]
steps:
- uses: actions/checkout@v4
- name: Build
run: cargo build --manifest-path=./projects/${{ matrix.projects }}/Cargo.toml --verbose
- name: Run tests
run: cargo test --manifest-path=./projects/${{ matrix.projects }}/Cargo.toml --verbose