Skip to content

Commit

Permalink
merge conflict fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
taha-abbasi committed Nov 3, 2022
2 parents 69057f2 + e26edff commit 29f35ef
Show file tree
Hide file tree
Showing 43 changed files with 4,002 additions and 0 deletions.
Binary file added .DS_Store
Binary file not shown.
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: [ master ]
paths-ignore:
- '**.md'

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

jobs:
build:

runs-on: ubuntu-18.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
- run: make prepare
- run: make check-lint
# Tests will be added after NCTL interaction is possible.
- run: make test
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
target
cep47-tests/wasm/*.wasm
node_modules
Loading

0 comments on commit 29f35ef

Please sign in to comment.