fix: upgrade go releaser declaration #158
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build | |
on: [pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Install Go | |
uses: actions/setup-go@v3 | |
with: | |
go-version: 1.18 | |
- name: Configure Git URL | |
run: | | |
git config --global url.https://[email protected]/.insteadOf https://github.com/ | |
env: | |
GH_ACCESS_TOKEN: ${{ secrets.GH_TOKEN }} | |
- name: Build | |
run: | | |
make | |
- name: Execute Tests with Coverage | |
run: | | |
make test-coverage | |
- name: Upload Coverage | |
uses: codecov/codecov-action@v2 |