Skip to content

feat: Improve the logger passing #59

feat: Improve the logger passing

feat: Improve the logger passing #59

Workflow file for this run

name: Unit tests
on:
pull_request:
branches:
- main
push:
branches:
- main
tags:
- "*"
jobs:
unit-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
name: Checkout code
- name: setup golang v1.x
uses: actions/setup-go@v4
with:
go-version-file: go.mod
- name: Install Task
uses: arduino/setup-task@v1
- name: Unit test
run: |
go install github.com/jstemmer/go-junit-report/v2@latest
task test
- name: Test Summary
uses: test-summary/action@v2
with:
paths: "reports/*.xml"
if: always()