phony all the things #93
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# ci workflow | |
name: ci | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
environment: | |
name: ci | |
steps: | |
- name: checkout | |
uses: actions/checkout@v3 | |
- name: setup golang | |
uses: actions/setup-go@v4 | |
with: | |
go-version: ^1.21 | |
- name: golangci-lint | |
uses: golangci/golangci-lint-action@v3 | |
- name: goreleaser-check | |
uses: goreleaser/goreleaser-action@v4 | |
with: | |
version: latest | |
args: check -f .goreleaser.yml | |
test: | |
runs-on: ubuntu-latest | |
environment: | |
name: ci | |
steps: | |
- name: checkout | |
uses: actions/checkout@v3 | |
- name: setup golang | |
uses: actions/setup-go@v4 | |
with: | |
go-version: ^1.21 | |
- name: tests-only | |
if: ${{ github.event_name == 'pull_request' }} | |
run: make test | |
- name: test-coverage | |
if: ${{ github.event_name == 'push' }} | |
uses: paambaati/codeclimate-action@v5.0.0 | |
env: | |
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }} | |
with: | |
coverageCommand: make test | |
coverageLocations: ${{ github.workspace }}/cover.out:gocov | |
prefix: github.com/${{ github.repository }} | |
codeql: | |
if: ${{ github.event_name == 'push' }} | |
runs-on: ubuntu-latest | |
needs: [lint, test] | |
environment: | |
name: ci | |
steps: | |
- name: checkout | |
uses: actions/checkout@v3 | |
- name: setup golang | |
uses: actions/setup-go@v4 | |
with: | |
go-version: ^1.21 | |
- name: init codeql | |
uses: github/codeql-action/init@v2 | |
with: | |
languages: 'go' | |
- name: run analysis | |
uses: github/codeql-action/analyze@v2 |