Skip to content

Commit

Permalink
add github CI step
Browse files Browse the repository at this point in the history
  • Loading branch information
slingamn committed Dec 29, 2024
1 parent 7a9f798 commit 0272088
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 8 deletions.
8 changes: 0 additions & 8 deletions .github/dependabot.yml

This file was deleted.

24 changes: 24 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: "build"

on:
pull_request:
branches:
- "master"
- "stable"
push:
branches:
- "master"
- "stable"

jobs:
build:
runs-on: "ubuntu-22.04"
steps:
- name: "checkout repository"
uses: "actions/checkout@v3"
- name: "setup go"
uses: "actions/setup-go@v3"
with:
go-version: "1.23"
- name: "make test"
run: "make test"

0 comments on commit 0272088

Please sign in to comment.