Skip to content

[Prototype] Implement pre-run hooks with .hooks.d support #57

[Prototype] Implement pre-run hooks with .hooks.d support

[Prototype] Implement pre-run hooks with .hooks.d support #57

Workflow file for this run

name: Test
on:
# # Indicates I want to run this workflow on all branches, PR, and tags
push:
branches: ["main"]
tags: ["v*"]
pull_request:
branches: [ "main" ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- uses: cashapp/activate-hermit@v1
with:
working-directory: .hermit
cache: "true"
- name: Run go test
run: make test-go
- name: E2E test
run: make test-e2e