Skip to content
This repository has been archived by the owner on Dec 17, 2024. It is now read-only.

Commit

Permalink
Next step: Towards devnet (#46)
Browse files Browse the repository at this point in the history
  • Loading branch information
tuommaki authored Jan 21, 2024
1 parent 6d93031 commit 34f5e3a
Show file tree
Hide file tree
Showing 502 changed files with 17,198 additions and 93,074 deletions.
36 changes: 36 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: basics

on:
pull_request:
push:
branches:
- main

env:
CARGO_TERM_COLOR: always

jobs:
cargo:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
checks: [
fmt --all --check,
check --all-targets --all-features,
clippy --all-targets --all-features -- -D warnings,
test --all-targets --all-features
]
steps:
- uses: actions/checkout@v4
- uses: arduino/setup-protoc@v2
- uses: Swatinem/rust-cache@v2
- name: Default on nightly Rust
run: rustup default nightly
- name: Install additional components
run: |
rustup component add rustfmt
rustup component add clippy
- name: ${{ matrix.checks }}
run: cargo ${{ matrix.checks }}

5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
/target
Cargo.lock
*.txt
.DS_Store
.idea
crates/tests/e2e-tests/files
crates/tests/e2e-tests/prover
crates/tests/e2e-tests/verifier
Loading

0 comments on commit 34f5e3a

Please sign in to comment.