Skip to content

chore: linting issues in python collector #10

chore: linting issues in python collector

chore: linting issues in python collector #10

Workflow file for this run

name: Go
on: [push]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
go-version: [ '1.15.x', 'stable' ]
defaults:
run:
working-directory: ./go
steps:
- uses: actions/checkout@v4
- name: Setup Go ${{ matrix.go-version }}
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
cache-dependency-path: ./go/go.sum
- name: Display Go version
run: go version
- name: Download dependencies
run: go mod download
- name: Test with Go
run: go test -v -cover ./...