From 0a2b99bb99fcbad00fa6b69b77a083d05facccd9 Mon Sep 17 00:00:00 2001 From: Bourne Zhang Date: Mon, 7 Oct 2024 23:27:03 +0800 Subject: [PATCH] seperate process --- .github/workflows/integration.yml | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml index 7b79d5d3bab5..46f6c59d69e3 100644 --- a/.github/workflows/integration.yml +++ b/.github/workflows/integration.yml @@ -6,7 +6,7 @@ on: push: jobs: - integration: + lint: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 @@ -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