move to v1.2.3 and add namespace watcher #163
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Perform unittest for daemon | |
on: | |
pull_request: | |
branches: | |
- v1.2.3 | |
push: | |
paths: | |
- daemon/** | |
- cni/** | |
- Makefile | |
jobs: | |
daemon-test: | |
runs-on: ubuntu-latest | |
env: | |
IMAGE_NAME: ghcr.io/${{ github.repository }}-daemon | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-go@v2 | |
with: | |
go-version: '1.17.0' | |
- name: Set up Docker | |
uses: docker/setup-buildx-action@v1 | |
- name: Test | |
run: make test-daemon |