Skip to content

chore: bump goreleaser/goreleaser-action from 4 to 5 #46

chore: bump goreleaser/goreleaser-action from 4 to 5

chore: bump goreleaser/goreleaser-action from 4 to 5 #46

Workflow file for this run

name: unit-tests
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
on:
pull_request:
branches:
- main
- release-**
paths-ignore: ['docs/**', '**.md', '**.mdx', '**.png', '**.jpg']
push:
branches: [main]
paths-ignore: ['docs/**', '**.md', '**.mdx', '**.png', '**.jpg']
permissions:
contents: read
packages: write
env:
GO_VERSION: '1.20'
jobs:
unit-tests:
runs-on: ubuntu-latest
steps:
- name: Set up Go ${{ env.GO_VERSION }}
uses: actions/setup-go@v4
with:
go-version: ${{ env.GO_VERSION }}
- name: Check out the code in the Go module directory
uses: actions/checkout@v4
with:
submodules: true
fetch-depth: 0
- name: Run unit tests & Generate coverage
run: |
make unit-test
- name: Upload Codecov report
uses: codecov/codecov-action@v3
with:
## Comma-separated list of files to upload
files: ./coverage.txt