diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 00000000..ca3c297b --- /dev/null +++ b/.github/workflows/main.yml @@ -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