Skip to content

Bump version: 0.1.2 → 0.1.3 #24

Bump version: 0.1.2 → 0.1.3

Bump version: 0.1.2 → 0.1.3 #24

Workflow file for this run

name: Test Report
on:
pull_request:
push:
branches:
- main
permissions:
contents: read
actions: read
checks: write
jobs:
report:
runs-on: ubuntu-24.04
steps:
- name: Checkout Code
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
with:
fetch-depth: 0
- name: Git Fetch
run: git fetch --force --tags
- name: Setup go
uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5
with:
go-version: stable
- name: Run Unit Tests
run: make unit-test
- name: Test Report
uses: dorny/test-reporter@v1
if: success() || failure()
with:
name: Unit Test Results
path: ./build/reports/**-test.xml
reporter: java-junit
fail-on-error: 'true'
- name: Upload Reports
if: always()
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4
with:
name: unit-test-reports
path: ./build/reports/**