Create main.yml

feat: add github action
This commit is contained in:
debugtalk
2021-09-30 16:30:18 +08:00
committed by GitHub
parent f24ed0f1e4
commit fcf3135ca0

33
.github/workflows/main.yml vendored Normal file
View File

@@ -0,0 +1,33 @@
name: HttpBoomer CI
on:
push:
pull_request:
types: [synchronize]
schedule:
- cron: "0 0 1,11,21 * *"
jobs:
test:
strategy:
fail-fast: false
matrix:
go-version:
- 1.13.x
- 1.14.x
- 1.15.x
- 1.16.x
- 1.17.x
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@v2
- name: Test
run: go test ./...
- name: Test coverage
run: go test -coverprofile="cover.out" ./... # quotes needed for powershell