From 1f91971fc00c315c6f65a77d1511b4a6225289e1 Mon Sep 17 00:00:00 2001 From: Bourne Zhang Date: Mon, 7 Oct 2024 22:51:40 +0800 Subject: [PATCH] added integration --- .github/workflows/integration.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/integration.yml diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml new file mode 100644 index 000000000000..f658121f6e39 --- /dev/null +++ b/.github/workflows/integration.yml @@ -0,0 +1,22 @@ +name: 'Integration Deployment' + +on: + workflow_dispatch: + pull_request: + push: + +jobs: + integration: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - name: Setup Go + uses: actions/setup-go@v5 + with: + go-version: "1.21" + - name: golangci-lint + uses: golangci/golangci-lint-action@v6 + with: + version: v1.60 + - name: test opnode + run: cd op-node && make test