Skip to content

Commit

Permalink
use latest casper EE
Browse files Browse the repository at this point in the history
  • Loading branch information
akirapham committed Mar 1, 2024
0 parents commit c3a40b5
Show file tree
Hide file tree
Showing 167 changed files with 226,610 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/ci-casper-rust-contract.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: ci-casper-rust-contract

on:
push:
branches: [ main ]
paths-ignore:
- '**.md'

pull_request:
branches: [ main ]
paths-ignore:
- '**.md'

jobs:
build:

runs-on: ubuntu-20.04

steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
profile: minimal
components: rustfmt, clippy
# Needed for gcc install
- run: sudo apt update && sudo apt install -y build-essential wabt
- uses: Swatinem/rust-cache@v1
- run: make prepare
- run: make check-lint
- run: make test-fast
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
node_modules
.env
target
scripts
tests/wasm
.DS_Store
Loading

0 comments on commit c3a40b5

Please sign in to comment.