Skip to content

Update OTel to v1.27.0 #28

Update OTel to v1.27.0

Update OTel to v1.27.0 #28

Workflow file for this run

name: Main CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.21'
- name: Install golangci-lint
run: go install github.com/golangci/golangci-lint/cmd/golangci-lint@v1.54.2
- name: Install govulncheck
run: go install golang.org/x/vuln/cmd/govulncheck@latest
- name: Linting
run: make lint
- name: govulncheck
run: govulncheck ./...
- name: Testing
run: make test
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}