Skip to content

Chore: Fix Workflows #1

Chore: Fix Workflows

Chore: Fix Workflows #1

Workflow file for this run

# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json
name: Build
on:
pull_request:
branches:
- main
# paths:
# - "cli/**"
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: 🛎 Checkout
uses: actions/checkout@v4
- name: 🔧 Install rust dependencies
uses: ./.github/workflows/rust-install
- name: Cargo Clean
run: cargo clean
- name: Cargo Build
run: RUST_BACKTRACE=full cargo build -vv