Skip to content

Commit

Permalink
Merge pull request #6 from stefanvanburen/svanburen/add-ci
Browse files Browse the repository at this point in the history
Add basic CI
  • Loading branch information
stefanvanburen authored Mar 21, 2024
2 parents b5e9b96 + e7f2b2a commit d92ee58
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,7 @@ updates:
directory: "/"
schedule:
interval: "weekly"
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "weekly"
13 changes: 13 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
name: ci
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
- run: go test ./...

0 comments on commit d92ee58

Please sign in to comment.