mirror of
https://github.com/gofiber/fiber.git
synced 2025-02-23 23:24:14 +00:00
18 lines
440 B
YAML
18 lines
440 B
YAML
on: [push, pull_request]
|
|
name: Test
|
|
jobs:
|
|
Build:
|
|
strategy:
|
|
matrix:
|
|
go-version: [1.11.x, 1.14.x]
|
|
platform: [ubuntu-latest, windows-latest]
|
|
runs-on: ${{ matrix.platform }}
|
|
steps:
|
|
- name: Install Go
|
|
uses: actions/setup-go@v1
|
|
with:
|
|
go-version: ${{ matrix.go-version }}
|
|
- name: Fetch Repository
|
|
uses: actions/checkout@v2
|
|
- name: Run Test
|
|
run: go test ./... -v -race |