Skip to content

Fixed the bug which was not listing the major version (#61) #129

Fixed the bug which was not listing the major version (#61)

Fixed the bug which was not listing the major version (#61) #129

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.24'
- name: Install dependencies
run: go mod download
- name: Run tests with coverage
run: go test -coverprofile=coverage.out ./...
continue-on-error: true
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
with:
file: ./coverage.out
token: ${{ secrets.CODECOV_TOKEN }}
fail_ci_if_error: false