Skip to content

Commit

Permalink
Add test to CI
Browse files Browse the repository at this point in the history
  • Loading branch information
rot256 committed Oct 24, 2023
1 parent 0929a3b commit 3b34153
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Go

on:
push:
pull_request:
# once a week
schedule:
- cron: 21 2 * * MON

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v4
with:
go-version: 'stable'
# run test
- run: go test

0 comments on commit 3b34153

Please sign in to comment.