Skip to content

Commit

Permalink
Create go.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
mawenbo-huawei authored Apr 1, 2024
1 parent 80263e4 commit 68a6b25
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Go CI

on:
workflow_dispatch:
schedule:
- cron: '0 0 * * *'
jobs:

build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

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

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

0 comments on commit 68a6b25

Please sign in to comment.