Skip to content

Fix Slim template example #84

Fix Slim template example

Fix Slim template example #84

Workflow file for this run

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