Skip to content

Commit

Permalink
ci
Browse files Browse the repository at this point in the history
  • Loading branch information
tiagofneto committed Dec 15, 2023
1 parent 4b30bae commit 3c17595
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 1 deletion.
13 changes: 13 additions & 0 deletions .github/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
name: CI
on:
push:
merge_group:
pull_request:
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: software-mansion/setup-scarb@v1
- run: scarb fmt --check
- run: scarb test
4 changes: 3 additions & 1 deletion src/channel/channel.cairo
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
use cairo_verifier::common::{flip_endiannes::FlipEndiannessTrait, to_array::ToArrayTrait, blake2s::blake2s};
use cairo_verifier::common::{
flip_endiannes::FlipEndiannessTrait, to_array::ToArrayTrait, blake2s::blake2s
};

const C_PRIME_AS_UINT256_LOW: u128 = 31;
const C_PRIME_AS_UINT256_HIGH: u128 =
Expand Down

0 comments on commit 3c17595

Please sign in to comment.