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

feat: on chain security info #196

Merged
merged 5 commits into from
Nov 23, 2023
Merged
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
28 changes: 27 additions & 1 deletion .github/workflows/ci-code-review-rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,32 @@ jobs:
- name: Run Clippy
run: cargo clippy --features enable-gpl -- --no-deps -D warnings --allow=clippy::result-large-err

build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
submodules: recursive

- name: Install just
uses: extractions/setup-just@v1

- name: Install Rust toolchain
run: rustup toolchain install ${{ env.RUST_TOOLCHAIN }}

- name: Cache dependencies
uses: Swatinem/rust-cache@v2

- name: Install Solana
uses: metadaoproject/[email protected]
with:
solana-cli-version: $SOLANA_VERSION

- name: Build OpenBook V2
run: cargo build-sbf --features enable-gpl

test:
name: Test
runs-on: ubuntu-latest
Expand Down Expand Up @@ -89,7 +115,7 @@ jobs:

all-pass:
name: All tests pass 📖
needs: ['format', 'lint', 'test']
needs: ['format', 'lint', 'build', 'test']
runs-on: ubuntu-latest
steps:
- run: echo ok
Loading
Loading