Skip to content

Commit

Permalink
Run full build command
Browse files Browse the repository at this point in the history
  • Loading branch information
wilwade committed Jul 31, 2024
1 parent b29de48 commit 56ec8b4
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/cli-build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# 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

0 comments on commit 56ec8b4

Please sign in to comment.