Skip to content

Commit

Permalink
Create ci.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
qclaogui committed Dec 10, 2024
1 parent 543a4f4 commit 97bffe7
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: ci
on:
push:
branches: [main]
paths:
- 'monitoring-mixins/**'
- '**.go'
- go.mod
- go.sum

jobs:
build:
name: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: '1.23'

- name: Build binary
run: make build

0 comments on commit 97bffe7

Please sign in to comment.