mirror of
https://github.com/httprunner/httprunner.git
synced 2026-05-12 10:49:43 +08:00
34 lines
736 B
YAML
34 lines
736 B
YAML
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
|