1
0
mirror of https://github.com/gofiber/fiber.git synced 2025-02-24 19:24:26 +00:00
Fenny 9a31f89fdb v2
2020-09-13 11:22:01 +02:00

18 lines
440 B
YAML

on: [push, pull_request]
name: Test
jobs:
Build:
strategy:
matrix:
go-version: [1.14.x, 1.15.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