Skip to content

Commit

Permalink
workflow(build): fix workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
comfysage authored Nov 5, 2023
1 parent 041becb commit f8b4df8
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 24 deletions.
24 changes: 0 additions & 24 deletions .github/workflows/build-lib.yml

This file was deleted.

20 changes: 20 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Build & Test

on:
push:
branches: [ "mega", "nightly" ]
pull_request:
branches: [ "mega", "nightly" ]

env:
CARGO_TERM_COLOR: always

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build
run: cargo build -vv
- name: Run tests
run: cargo test -p saku-lib -p saku-cli --verbose

0 comments on commit f8b4df8

Please sign in to comment.