Skip to content

Commit 46621ec

Browse files
committed
test actions
1 parent ac02071 commit 46621ec

File tree

2 files changed

+20
-11
lines changed

2 files changed

+20
-11
lines changed

.github/workflows/build.yml

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: Build
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
build:
7+
runs-on: ubuntu-latest
8+
steps:
9+
# Install dependencies
10+
- name: Install dependencies
11+
run: |
12+
curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s v1.24.0
13+
14+
# Checkout repo
15+
- name: Checkout repository
16+
uses: actions/checkout@v2
17+
18+
- name: Run golangci-lint
19+
run: |
20+
make lint

.github/workflows/lint.yml

-11
This file was deleted.

0 commit comments

Comments
 (0)