Skip to content

turn e2e tests job back on, fix userapi test #3

turn e2e tests job back on, fix userapi test

turn e2e tests job back on, fix userapi test #3

Workflow file for this run

name: unit tests
on: {}
# pull_request:
# push:
# branches:
# - main
jobs:
unittests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.head_ref }}
- uses: actions/setup-go@v5
with:
go-version-file: go.mod
- name: install deps
run: go mod download
- name: run tests
run: |
go test -v -count=1 -cover -coverpkg=./... -coverprofile=profile.cov ./...
go tool cover -func=profile.cov | tail -n 1