diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml deleted file mode 100644 index e145e04..0000000 --- a/.github/workflows/build.yml +++ /dev/null @@ -1,44 +0,0 @@ -name: build - -on: - push: - branches: - - 'master' - tags: - - 'v*' - pull_request: - -jobs: - notify: - runs-on: ubuntu-latest - steps: - - - name: Checkout - uses: actions/checkout@v2.3.4 - with: - fetch-depth: 0 - - - name: Set up Go - uses: actions/setup-go@v2 - with: - go-version: 1.15 - - - name: Cache Go modules - uses: actions/cache@v2.1.5 - with: - path: ~/go/pkg/mod - key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} - restore-keys: | - ${{ runner.os }}-go- - - - name: Make Setup - run: | - make setup - - - name: Build - run: | - go build -v ./... - - - name: Make CI - run: | - make ci diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..079abc9 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,22 @@ +name: CI +on: + push: + tags: + - v* + branches: + - main + pull_request: +jobs: + golangci: + name: Lint, Test & Build + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - name: Lint + uses: golangci/golangci-lint-action@v2 + with: + version: latest + - name: Test + run: make test + - name: Build + run: go build -v ./...