Skip to content

fix(kubernetes): add localvmid to cluster node #81

fix(kubernetes): add localvmid to cluster node

fix(kubernetes): add localvmid to cluster node #81

Workflow file for this run

name: Tests
on:
pull_request:
paths-ignore:
- "README.md"
push:
branches: [main]
paths-ignore:
- "README.md"
permissions:
contents: read
jobs:
unit-tests:
runs-on: ubuntu-latest
name: unit tests
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: "go.mod"
- name: Fix permissions for cache directories
run: |
chmod -R 0755 ~/.cache/go-build ~/go/pkg/mod || true
- name: Set up cache
uses: actions/cache@v4
with:
path: |
~/.cache/go-build
~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('go.sum', 'tools/go.sum') }}-${{ matrix.go-version }}
restore-keys: |
${{ runner.os }}-go-
- name: Install tools
run: make tools
- name: Lint source code
run: make lint
- name: Run unit tests
run: make test