Skip to content

Commit

Permalink
enable basic github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
sni committed Nov 5, 2024
1 parent 37641db commit 7e3e34a
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
version: 2
updates:
- package-ecosystem: github-actions
directory: "/"
schedule:
interval: daily
time: "04:00"
pull-request-branch-name:
separator: "-"
open-pull-requests-limit: 10
24 changes: 24 additions & 0 deletions .github/workflows/citest.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: citest
on:
push:
pull_request:
schedule:
- cron: '30 4 * * 1'
jobs:
test:
strategy:
fail-fast: false
matrix:
go-version:
- 1.22.x
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- uses: actions/checkout@v4
- run: make clean
- run: make citest
- run: make

0 comments on commit 7e3e34a

Please sign in to comment.