Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ratankaliani committed Aug 27, 2024
1 parent 45aeea0 commit ed77afe
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 18 deletions.
19 changes: 1 addition & 18 deletions .github/workflows/compile.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Compile Native Programs and Run Tests
name: OP Succinct

on:
pull_request:
Expand All @@ -18,20 +18,3 @@ jobs:
- name: Compile the range program
run: cargo build --profile release-client-lto
working-directory: client-programs/range
test_op_proposer_go:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: '1.22'
- name: Run main_test.go
run: go test -v ./server/main_test.go
working-directory: op-proposer-go
env:
L2_RPC: ${{ secrets.L2_RPC }}
L2_NODE_RPC: ${{ secrets.L2_NODE_RPC }}
L1_RPC: ${{ secrets.L1_RPC }}
L1_BEACON_RPC: ${{ secrets.L1_BEACON_RPC }}
27 changes: 27 additions & 0 deletions .github/workflows/op_proposer.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: OP Proposer [Go]

on:
pull_request:
branches:
- main
paths:
- 'op-proposer-go/**'

jobs:
test_op_proposer_go:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: '1.22'
- name: Run main_test.go
run: go test -v ./server/main_test.go
working-directory: op-proposer-go
env:
L2_RPC: ${{ secrets.L2_RPC }}
L2_NODE_RPC: ${{ secrets.L2_NODE_RPC }}
L1_RPC: ${{ secrets.L1_RPC }}
L1_BEACON_RPC: ${{ secrets.L1_BEACON_RPC }}

0 comments on commit ed77afe

Please sign in to comment.