Skip to content

Merge pull request #443 from gofiber/dependabot/go_modules/ace/gofibe… #142

Merge pull request #443 from gofiber/dependabot/go_modules/ace/gofibe…

Merge pull request #443 from gofiber/dependabot/go_modules/ace/gofibe… #142

Workflow file for this run

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