Compare commits
No commits in common. "b90d2dbcc8d64f01dbe6b3eaa123def696ee1457" and "fd263d8280bd144f1a5ed8d04733c65f1d3b897c" have entirely different histories.
b90d2dbcc8
...
fd263d8280
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