8000 Merge pull request #1322 from gofiber/dependabot/go_modules/monitor/github.com/valyala/fasthttp-1.63.0 · gofiber/contrib@6015e32 · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Merge pull request #1322 from gofiber/dependabot/go_modules/monitor/g… #30

Merge pull request #1322 from gofiber/dependabot/go_modules/monitor/g…

Merge pull request #1322 from gofiber/dependabot/go_modules/monitor/g… #30

Workflow file for this run

name: "Test Monitor"
on:
push:
branches:
- master
- main
paths:
- 'monitor/**'
pull_request:
paths:
- 'monitor/**'
jobs:
Tests:
runs-on: ubuntu-latest
strategy:
matrix:
go-version:
- 1.22.x
- 1.23.x
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
working-directory: ./monitor
run: go test -v -race ./...
0