This repository was archived by the owner on Oct 14, 2025. It is now read-only.
Bump golang from 52ff1b3 to 991aa6a
#922
Workflow file for this run
This file contains hidden or 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: Test | |
| on: [push, pull_request] | |
| env: | |
| REGISTRY: ghcr.io | |
| IMAGE_NAME: aojea/kindnetd | |
| permissions: write-all | |
| jobs: | |
| test: | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| go-version: [1.23.x] | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/setup-go@v5 | |
| with: | |
| go-version: ${{ matrix.go-version }} | |
| - uses: actions/checkout@v4 | |
| - run: sudo make test | |
| - run: make verify | |