Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[+] #11

Merged
merged 11 commits into from
Sep 28, 2024
Merged

[+] #11

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ See tests and examples for inspiration.
<td valign="top", valign="center">

```rust
/* install *///------------//* import *///-------------------------->
/* install *///------------//* import *///------------------------->
/* Run in dir: */ use kawala::{ View, Calldata, WithSig };
cargo add kawala //
// or add to Cargo.toml: //* init *///------------------------------------------------------->
Expand All @@ -79,4 +79,4 @@ kawala = "0.1.3" let mut view = View::new(Calldata::from_hex("ff"),
_..416c6c204920736565206973206172726179206f66667365742c2075696e7432353620616e6420616464726573732e_ ![image](misc/assets/glider.png)
<!-- All I see is array offset, uint256 and address. -->
<!-- say free <3 -->

25 changes: 25 additions & 0 deletions misc/workflows/ci.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 --1verbose