chore: add ownbrew

This commit is contained in:
Kevin Franklin Kim 2024-10-16 22:21:08 +02:00
parent 9e20d4d85b
commit 9f86ff45e1
No known key found for this signature in database
2 changed files with 25 additions and 0 deletions

View File

@ -1,6 +1,10 @@
.DEFAULT_GOAL:=help
-include .makerc
# --- Config -----------------------------------------------------------------
export PATH := bin:$(PATH)
# --- Targets -----------------------------------------------------------------
# This allows us to accept extra arguments
@ -18,6 +22,11 @@
## === Tasks ===
.PHONY: brew
## Install project binaries
brew:
@ownbrew install
.PHONY: doc
## Run tests
doc:

16
ownbrew.yaml Normal file
View File

@ -0,0 +1,16 @@
# yaml-language-server: $schema=https://raw.githubusercontent.com/foomo/ownbrew/refs/tags/v0.1.0/ownbrew.schema.json
version: '1.0'
binDir: "bin"
tapDir: ".ownbrew/tap"
tempDir: ".ownbrew/tmp"
cellarDir: ".ownbrew/bin"
packages:
## https://github.com/golangci/golangci-lint/releases
- name: golangci-lint
tap: foomo/tap/golangci/golangci-lint
version: 1.61.0
## https://github.com/go-courier/husky/releases
- name: husky
tap: foomo/tap/go-courier/husky
version: 1.8.1