Skip to content

Commit

Permalink
seperate process
Browse files Browse the repository at this point in the history
  • Loading branch information
bournezjc committed Oct 7, 2024
1 parent 2825507 commit 0a2b99b
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
push:

jobs:
integration:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand All @@ -18,5 +18,13 @@ jobs:
run: curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin v1.61.0
- name: lint
run: make lint-go
- name: test opnode
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: "1.22"
- name: op-node test
run: cd op-node && make test

0 comments on commit 0a2b99b

Please sign in to comment.