Skip to content

fix: github action error #28

fix: github action error

fix: github action error #28

Workflow file for this run

name: Makefile CI
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
ci:
runs-on: ubuntu-latest
steps:
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '~1.20'
cache: false
- name: Checkout Source
uses: actions/checkout@v4
with:
fetch-depth: 1
- name: Build
run: |
make build
./g -v
- name: Run gosec
uses: securego/gosec@master
with:
args: -exclude=G107,G204,G304,G401,G505 -quiet ./...
- name: Run staticcheck
uses: dominikh/staticcheck-action@v1
with:
version: "latest"
- name: Run golangci-lint
uses: golangci/golangci-lint-action@v3
with:
version: "latest"
- name: Run coverage
run: make test-coverage
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
with:
files: ./coverage.txt
flags: unittests
fail_ci_if_error: true
verbose: true