Compare commits
No commits in common. "40c2618e4dffa92e1072d7bd0e93ec309f78c73c" and "935efb3aa05e0a5d925666f2308fd6f65ab5fb39" have entirely different histories.
40c2618e4d
...
935efb3aa0
3 changed files with 34 additions and 2 deletions
31
.forgejo/workflows/build.yml
Normal file
31
.forgejo/workflows/build.yml
Normal file
|
@ -0,0 +1,31 @@
|
|||
name: build bin
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [main]
|
||||
pull_request:
|
||||
branches: [main]
|
||||
|
||||
permissions:
|
||||
contents: read
|
||||
|
||||
jobs:
|
||||
build:
|
||||
name: Make sure build does not fail
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: https://code.forgejo.org/actions/checkout@v4
|
||||
name: checkout
|
||||
- name: install alsa devel
|
||||
run: apt update && apt install libasound2-dev -y
|
||||
- uses: https://code.forgejo.org/actions/setup-go@v5
|
||||
name: install go
|
||||
with:
|
||||
go-version-file: './go.mod'
|
||||
- run: go version
|
||||
name: Go version
|
||||
- run: make dep
|
||||
name: install dependencies
|
||||
- run: make build
|
||||
name: build app
|
||||
|
|
@ -24,4 +24,4 @@ jobs:
|
|||
with:
|
||||
check_filenames: true
|
||||
check_hidden: true
|
||||
skip: ./vendor,./.git
|
||||
skip: ./.git
|
||||
|
|
|
@ -2,5 +2,6 @@
|
|||
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
||||
"reviewers": [
|
||||
"sagi"
|
||||
]
|
||||
],
|
||||
"branchPrefix": "inspector_gadget/"
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue