Bump golang.org/x/sync from 0.4.0 to 0.5.0 #309
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: Test and Build | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
validation: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Install Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: "1.20" | |
- name: lint | |
run: make lint | |
- name: test | |
run: make test | |
- name: generate coverage report | |
run: make cover | |
- name: Codecov | |
uses: codecov/codecov-action@v3.1.4 | |
- name: Build | |
run: make build |