diff --git a/.github/workflows/ci.yaml b/.github/workflows/build.yaml similarity index 72% rename from .github/workflows/ci.yaml rename to .github/workflows/build.yaml index c0c330b8..0a08a4ed 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/build.yaml @@ -1,4 +1,4 @@ -name: ci +name: build on: push: @@ -20,11 +20,5 @@ jobs: - name: Check out code into the Go module directory uses: actions/checkout@v2 - - name: gofmt - run: make fmt - - - name: Build - run: go bulid -v . - - - name: Test - run: make test + - name: Make + run: make all