Skip to content

Use Cilium kvstore and support multiple policies. #91

Use Cilium kvstore and support multiple policies.

Use Cilium kvstore and support multiple policies. #91

Workflow file for this run

name: Build
on:
pull_request:
push:
branches:
- main
env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version-file: 'go.mod'
- name: Check formatting and dependencies
run: |
go install golang.org/x/tools/cmd/goimports@latest
goimports -w .
go mod tidy
if [ -n "$(git status --porcelain)" ]; then
echo "Please run 'goimports' and 'go mod tidy'"
exit 1
fi
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...
- uses: dominikh/staticcheck-action@v1.3.0
with:
version: "2023.1.3"
push:
needs:
build
if: ${{ github.ref == 'refs/heads/main' }}
permissions:
contents: read
packages: write
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Log in to the Container registry
uses: docker/login-action@v2
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v4
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
tags: |
type=sha
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
with:
platforms: linux/amd64,linux/arm64
- name: Build and push Docker image
uses: docker/build-push-action@v4
with:
context: .
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
platforms: linux/amd64,linux/arm64