Skip to content

Commit

Permalink
feat: add integration workflow (#14)
Browse files Browse the repository at this point in the history
  • Loading branch information
bournezjc authored Oct 8, 2024
1 parent f7447e2 commit 1bc2e10
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/integration.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: 'Integration Deployment'

on:
workflow_dispatch:
pull_request:
push:

jobs:
lint:
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.59.1
- name: lint
run: make lint-go
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 1bc2e10

Please sign in to comment.