Skip to content

Commit

Permalink
add lint
Browse files Browse the repository at this point in the history
  • Loading branch information
jackivanov committed Dec 10, 2023
1 parent e536eae commit 3f5d680
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Lint & test

on:
pull_request:
branches:
- main

jobs:
lint:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.20

- name: Install Make
run: sudo apt-get install make

- name: Run make lint
run: make lint

- name: Run make testacc
run: make testacc

0 comments on commit 3f5d680

Please sign in to comment.