Skip to content

Commit

Permalink
added integration
Browse files Browse the repository at this point in the history
  • Loading branch information
bournezjc committed Oct 7, 2024
1 parent d340262 commit 1f91971
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.21"
- name: golangci-lint
uses: golangci/golangci-lint-action@v6
with:
version: v1.60
- name: test opnode
run: cd op-node && make test

0 comments on commit 1f91971

Please sign in to comment.