mirror of
https://github.com/gofiber/fiber.git
synced 2025-05-31 11:52:41 +00:00
Bumps [actions/setup-go](https://github.com/actions/setup-go) from 1 to 3. - [Release notes](https://github.com/actions/setup-go/releases) - [Commits](https://github.com/actions/setup-go/compare/v1...v3) --- updated-dependencies: - dependency-name: actions/setup-go dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
20 lines
466 B
YAML
20 lines
466 B
YAML
on: [push, pull_request]
|
|
name: Test
|
|
jobs:
|
|
Build:
|
|
strategy:
|
|
matrix:
|
|
go-version: [1.14.x, 1.15.x, 1.16.x, 1.17.x, 1.18.x]
|
|
platform: [ubuntu-latest, windows-latest]
|
|
runs-on: ${{ matrix.platform }}
|
|
steps:
|
|
- name: Install Go
|
|
uses: actions/setup-go@v3
|
|
with:
|
|
go-version: ${{ matrix.go-version }}
|
|
- name: Fetch Repository
|
|
uses: actions/checkout@v2
|
|
- name: Run Test
|
|
run: go test ./... -v -race
|
|
|