Skip to content

build: Do not use bin/ and bin/testbin as make dependencies (#10) #36

build: Do not use bin/ and bin/testbin as make dependencies (#10)

build: Do not use bin/ and bin/testbin as make dependencies (#10) #36

Workflow file for this run

name: Test
on:
push:
branches:
- d2iq/*
pull_request:
branches:
- d2iq/*
jobs:
test:
name: Test
runs-on:
- self-hosted
- small
steps:
- uses: actions/checkout@v3
- name: Setup Go
uses: actions/setup-go@v3
with:
go-version-file: go.mod
cache: true # cache go action in github actions cache store.
- name: make test
run: |
make test TEST_PACKAGES='$(shell go list ./... | grep -v tests/e2e)'