Skip to content

test: fix typo

test: fix typo #275

Workflow file for this run

name: CI Workflow
on: [push]
jobs:
test_application:
name: Run tests
runs-on: ubuntu-latest
steps:
- name: Checkout code into the Go module directory
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
- name: Run tests
run: go test -race -covermode atomic -coverprofile=covprofile ./...
# if you clone this repository, you can remove the following steps: Install goveralls and Send coverage
- name: Install goveralls
run: go install github.com/mattn/goveralls@latest
- name: Send coverage
env:
COVERALLS_TOKEN: ${{ secrets.COVERALLS_TOKEN }}
run: goveralls -coverprofile=covprofile -service=github
govulncheck:
runs-on: ubuntu-latest
name: Run govulncheck
steps:
- name: Checkout code into the Go module directory
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
- name: Running Vulnerability Check
run: |
go install golang.org/x/vuln/cmd/govulncheck@latest
govulncheck ./...