Skip to content

Commit

Permalink
add integration workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
bournezjc committed Oct 7, 2024
1 parent a79b2e5 commit 2825507
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/integration.yml
Original file line number Diff line number Diff line change
@@ -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.22"
- name: Install golangci-lint
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
run: cd op-node && make test

0 comments on commit 2825507

Please sign in to comment.