Skip to content

Bump github.com/fsnotify/fsnotify from 1.6.0 to 1.7.0 #109

Bump github.com/fsnotify/fsnotify from 1.6.0 to 1.7.0

Bump github.com/fsnotify/fsnotify from 1.6.0 to 1.7.0 #109

Workflow file for this run

name: ci
on: [push, pull_request]
jobs:
test-build:
strategy:
matrix:
go-version: [1.21.x, 1.20.x, 1.19.x, 1.18.x]
os: [ubuntu-20.04, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Test
run: go test -race -v -timeout 2m ./...
- name: Build lib
run: go build
- name: Build cmd
run: go build
working-directory: ./cmd/gotail