Skip to content

Commit

Permalink
ci: add basic CI
Browse files Browse the repository at this point in the history
- Add GitHub Action CI for build and test.
- Add dependabot config.
  • Loading branch information
Taowyoo committed Apr 25, 2024
1 parent 4c1939d commit 0863580
Show file tree
Hide file tree
Showing 2 changed files with 53 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
version: 2
updates:
- package-ecosystem: gomod
directory: "/"
schedule:
interval: weekly
open-pull-requests-limit: 10

- package-ecosystem: github-actions
directory: "/"
schedule:
interval: weekly
41 changes: 41 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
# This workflow will build a golang project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go

name: Go

on:
push:
paths:
- ".github/workflows/build.yml"
- "go.mod"
- "go.sum"
- "**.go"
branches: [ "master" ]
pull_request:
paths:
- ".github/workflows/build.yml"
- "go.mod"
- "go.sum"
- "**.go"
branches: [ "master" ]
# This CI will be triigerred on any merge_group events
merge_group:

jobs:

build:
name: "Build+Test"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.12'

- name: Build
run: go build -v ./...

- name: Test
run: go test -v ./...

0 comments on commit 0863580

Please sign in to comment.