Skip to content

fix(deps): update module github.com/containeroo/notifykit to v0.0.1 #1

fix(deps): update module github.com/containeroo/notifykit to v0.0.1

fix(deps): update module github.com/containeroo/notifykit to v0.0.1 #1

Workflow file for this run

---
name: Unit Tests
on:
workflow_call:
pull_request:
branches:
- main
paths:
- "main.go"
- "templates/**"
- "internal/**"
- ".goreleaser.yaml"
- "Dockerfile"
- go.mod
- go.sum
- Dockerfile.goreleaser
- Makefile
workflow_dispatch:
jobs:
tests:
name: Run Tests
runs-on: ubuntu-latest
container:
image: golang:1.26
options: --cap-add=NET_RAW --cap-add=NET_ADMIN
steps:
- name: Check out code
uses: actions/checkout@v7
with:
fetch-depth: 0
submodules: recursive
- name: Install build tools
run: |
apt-get update
apt-get install -y make
- name: Set up Go cache
uses: actions/cache@v6
with:
path: |
/go/pkg/mod
~/.cache/go-build
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: Download deps
run: make download
- name: Run unit tests
run: make test