Skip to content

Merge pull request #283 from gofiber/dependabot/go_modules/mustache/g… #59

Merge pull request #283 from gofiber/dependabot/go_modules/mustache/g…

Merge pull request #283 from gofiber/dependabot/go_modules/mustache/g… #59

Workflow file for this run

on:
push:
branches:
- master
- main
paths:
- 'mustache/**'
pull_request:
paths:
- 'mustache/**'
name: Tests Mustache
jobs:
Tests:
strategy:
matrix:
go-version:
- 1.17.x
- 1.18.x
- 1.19.x
- 1.20.x
platform: [ ubuntu-latest, windows-latest ]
runs-on: ${{ matrix.platform }}
steps:
- name: Fetch Repository
uses: actions/checkout@v3
- name: Install Go
uses: actions/setup-go@v4
with:
go-version: '${{ matrix.go-version }}'
- name: Run Test
run: cd ./mustache && go test ./... -race -v