Skip to content

release first version for all module (#7) #8

release first version for all module (#7)

release first version for all module (#7) #8

Workflow file for this run

name: Timer Pull Request Check
on:
pull_request:
paths:
- 'timer/**'
push:
paths:
- 'timer/**'
workflow_dispatch:
permissions:
contents: read
jobs:
build:
name: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
with:
go-version: 1.19
- name: Build
run: cd timer && go build -v ./...
- name: Test
run: cd timer && go test -v -gcflags=all=-l ./...