mirror of
https://github.com/gosom/google-maps-scraper.git
synced 2026-09-19 07:27:12 +08:00
56 lines
1000 B
YAML
56 lines
1000 B
YAML
name: build
|
|
|
|
permissions: {}
|
|
|
|
on:
|
|
push:
|
|
branches: [main]
|
|
pull_request:
|
|
branches: [main]
|
|
|
|
jobs:
|
|
run:
|
|
name: Build
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 7
|
|
strategy:
|
|
fail-fast: true
|
|
matrix:
|
|
go: ['>=1.20.0']
|
|
|
|
steps:
|
|
- name: Check out code
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Install Go
|
|
uses: actions/setup-go@v4
|
|
with:
|
|
go-version: ${{ matrix.go }}
|
|
check-latest: true
|
|
|
|
- name: golangci-lint
|
|
uses: golangci/golangci-lint-action@v3
|
|
with:
|
|
version: v1.54.2
|
|
|
|
- name: Go Format
|
|
run: gofmt -s -w . && git diff --exit-code
|
|
|
|
- name: Lint
|
|
run: make lint
|
|
|
|
- name: Go Vet
|
|
run: go vet ./...
|
|
|
|
- name: Go Tidy
|
|
run: go mod tidy && git diff --exit-code
|
|
|
|
- name: Go Mod
|
|
run: go mod download
|
|
|
|
- name: Go Mod Verify
|
|
run: go mod verify
|
|
|
|
- name: Go Build
|
|
run: go build -o /dev/null ./...
|