Skip to content

Bump github.com/sahilm/fuzzy from 0.1.2 to 0.1.3 #23

Bump github.com/sahilm/fuzzy from 0.1.2 to 0.1.3

Bump github.com/sahilm/fuzzy from 0.1.2 to 0.1.3 #23

Workflow file for this run

name: ci
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Set up Go
uses: actions/setup-go@v6
with:
go-version-file: go.mod
- name: Vet
run: go vet ./...
- name: Test
run: go test ./...
- name: Gofmt
run: |
out=$(gofmt -l .)
if [ -n "$out" ]; then
echo "Unformatted files:"
echo "$out"
exit 1
fi
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Set up Go
uses: actions/setup-go@v6
with:
go-version-file: go.mod
- name: golangci-lint
uses: golangci/golangci-lint-action@v9
with:
version: v2.12.1