Skip to content

chore: switch from an unmaintained kubectl image to the Bitnami one #158

chore: switch from an unmaintained kubectl image to the Bitnami one

chore: switch from an unmaintained kubectl image to the Bitnami one #158

Workflow file for this run

name: Unit test
on:
pull_request:
types: [opened, reopened, synchronize, labeled]
push:
branches:
- main
jobs:
unit-test:
name: Start unit-test
if: ${{ github.event_name != 'pull_request' || contains(github.event.pull_request.labels.*.name, 'ok-to-test') }}
runs-on:
- self-hosted
- small
steps:
- name: Checkout code
uses: actions/checkout@v3
- uses: webfactory/[email protected]
with:
ssh-private-key: ${{ secrets.PRIVATE_SSH_KEY }}
- name: make unit test
run: make ci.docker.run GOOS=linux GOARCH=amd64 RUN_WHAT="make test"