Skip to content

added changelog

added changelog #134

Workflow file for this run

name: Build
on:
push:
branches:
- master # or the name of your main branch
- main # or the name of your main branch
- feature/*
- fix/*
- issue/*
jobs:
build:
name: Build
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Setup Go
uses: actions/setup-go@v3
with:
go-version: '1.24'
check-latest: true
- name: Run test coverage
run: go test ./... -coverprofile=coverage.out
- name: Run test report
run: go test ./... -json > report.json
- uses: sonarsource/sonarqube-scan-action@master
env:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
SONAR_HOST_URL: ${{ secrets.SONAR_HOST_URL }}