Skip to content

chore: update action #8

chore: update action

chore: update action #8

Workflow file for this run

name: go-unit-test
on:
push:
branches: [ "dev" ]
pull_request:
branches: [ "dev" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.22'
- name: Build
run: go build -v ./...
- name: Test
run: go test -v -coverpkg ./internal/core/services/ ./tests -cover