Skip to content

Commit

Permalink
Add Mina test workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
gabrielbosio committed Oct 8, 2024
1 parent 80b76dc commit 9abb4dd
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/test-mina.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: test-mina

on:
merge_group:
push:
branches: [main]
pull_request:
branches: ["*"]
paths:
- 'operator/sp1/**'
- '.github/workflows/test-mina.yml'

jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: '1.22'
cache: false
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
- name: Test Mina Rust
run: make test_mina_rust_ffi
- name: Test Mina go bindings
run: make test_mina_go_bindings_linux
- name: Test Mina Account Rust
run: make test_mina_account_rust_ffi
- name: Test Mina Account go bindings
run: make test_mina_account_go_bindings_linux

0 comments on commit 9abb4dd

Please sign in to comment.