This repository has been archived by the owner on Jan 18, 2024. It is now read-only.
Update otel direct and transitive deps #237
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@v5 | |
with: | |
go-version: '1.20' | |
- name: Lint | |
run: make lint | |
- name: go test | |
run: make test | |
- name: generate coverage report | |
run: make cover | |
- name: Upload coverage report (codcov.io) | |
run: bash <(curl -s https://codecov.io/bash) |