Skip to content

Commit

Permalink
[+] v0.1.3.1
Browse files Browse the repository at this point in the history
[+] workflow
  • Loading branch information
0xMaka authored Sep 28, 2024
2 parents b83e497 + 8915054 commit 043c677
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 2 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Cargo Build & Test

on:
push:
pull_request:

env:
CARGO_TERM_COLOR: always

jobs:
build_and_test:
name: Rust project - latest
runs-on: ubuntu-latest
strategy:
matrix:
toolchain:
- stable
- beta
- nightly
steps:
- uses: actions/checkout@v4
- run: rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }}
- run: cargo build --verbose
- run: cargo test --verbose

7 changes: 5 additions & 2 deletions tests/kwl32_util.rs
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@

//-----------------------------------------------------------------------------------------------//

//-------- -------- KWL32::CON TEST -------- --------//
//-----------------------------------------------------------------------------

#[cfg(test)]
mod kwl32_util {
use kawala::kwl32::util;

//-----------------------------------------------------------------------------------------------//

//-------- -------- PAD32 -------- --------//
Expand Down Expand Up @@ -219,4 +221,5 @@ mod kwl32_util {
}

}
//-----------------------------------------------------------------------------

//-----------------------------------------------------------------------------------------------//

0 comments on commit 043c677

Please sign in to comment.