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

Add geyser plugin runner #83

Merged
merged 23 commits into from
May 7, 2024
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
63 changes: 63 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,13 @@
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

on: [pull_request]

env:
CARGO_TERM_COLOR: always
CARGO_REGISTRIES_CRATES_IO_PROTOCOL: sparse

name: tests
jobs:
test:
Expand All @@ -18,3 +27,57 @@ jobs:
fetch-depth: 0
- name: Test
run: go test ./...
test_rust:
strategy:
matrix:
os: [ubuntu-20.04, ubuntu-22.04]

runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4

- uses: actions/cache@v3
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
./target
key: ${{ matrix.os }}-geyser-plugin-runner-${{ hashFiles('rust-toolchain.toml') }}-${{ hashFiles('**/Cargo.lock') }}-0001
restore-keys: |
${{ matrix.os }}-geyser-plugin-runner

- name: Set rust version
run: |
RUST_VERSION="$(./ci/rust-version.sh)"
echo "RUST_VERSION=$RUST_VERSION" >> "$GITHUB_ENV"

- name: Install protoc
run: |
sudo apt-get update
sudo apt-get install -y protobuf-compiler

- uses: actions-rs/toolchain@v1
with:
toolchain: ${{ env.RUST_VERSION }}
profile: minimal
components: clippy, rustfmt

- name: Enter the geyser-plugin-runner directory
run: cd geyser-plugin-runner

- name: cargo tree
run: |
cargo tree
git checkout Cargo.lock
cargo tree --frozen --offline

- name: Run fmt
run: cargo fmt --all -- --check

- name: Run clippy
run: cargo clippy --all-targets --tests -- -Dwarnings

- name: Run test
run: cargo test --all-targets
Loading
Loading