Skip to content

feat(captor): integrating Kivebpf in Koney #12

feat(captor): integrating Kivebpf in Koney

feat(captor): integrating Kivebpf in Koney #12

Workflow file for this run

name: Hooks
on:
pull_request:
push:
jobs:
test:
name: Run pre-commit hooks
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
- name: Cache pre-commit environments
id: cache-pre-commit
uses: actions/cache@v4
with:
path: ~/.cache/pre-commit
key: ${{ runner.os }}-pre-commit-${{ hashFiles('**/.pre-commit-config.yaml') }}
restore-keys: |
${{ runner.os }}-pre-commit-
- name: Install pre-commit hooks
run: python -m pip install --upgrade pre-commit
- name: Run pre-commit hooks
run: pre-commit run -v --all-files --show-diff-on-failure