Skip to content

Commit

Permalink
remove Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
0x46616c6b committed Mar 21, 2021
1 parent 8f1f465 commit 3a4f639
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 54 deletions.
20 changes: 11 additions & 9 deletions .github/workflows/integration.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,31 +10,33 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2

- name: Setup go
uses: actions/setup-go@v2.1.3
with:
go-version: '1.16.x'

- name: Vet
run: make vet
run: go vet

- name: Test
run: make coverage
run: go test ./...

build:
name: Build
runs-on: ubuntu-latest
needs:
- test
steps:
- uses: actions/checkout@v2

- name: Setup go
uses: actions/setup-go@v2.1.3
with:
go-version: '1.16.x'

- name: Build
run: make build
run: go build ./...

docker:
name: Docker
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Docker
run: make docker
run: docker build .
45 changes: 0 additions & 45 deletions Makefile

This file was deleted.

0 comments on commit 3a4f639

Please sign in to comment.