Skip to content

Commit

Permalink
feat: adding test workflow and fixing build
Browse files Browse the repository at this point in the history
  • Loading branch information
wei3erHase committed Sep 19, 2024
1 parent 6234f98 commit 700efe1
Show file tree
Hide file tree
Showing 3 changed files with 4,588 additions and 1,717 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Rust

on:
push:
branches:
- main
pull_request:
branches:
- "**"

env:
CARGO_TERM_COLOR: always

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose
- name: Run tests
run: cargo test-sbf --verbose
Loading

0 comments on commit 700efe1

Please sign in to comment.