Skip to content
This repository has been archived by the owner on Mar 3, 2024. It is now read-only.

Avoid cgo for docker #1468

Avoid cgo for docker

Avoid cgo for docker #1468

Workflow file for this run

name: Test
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v3
with:
go-version: 1.20.x
- name: Add GOBIN to PATH
run: echo "$(go env GOPATH)/bin" >> $GITHUB_PATH
shell: bash
- name: Cache deps
uses: actions/cache@v2
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: Tools
run: make tools
- name: Unit Tests
run: make test-unit
- name: Integration Tests
run: make test-integration
# - name: Coverage Report
# run: make cover-report
# - name: Upload coverage to Codecov
# uses: codecov/codecov-actions@v3