Skip to content

Bump github.com/PuerkitoBio/goquery from 1.8.1 to 1.9.0 #64

Bump github.com/PuerkitoBio/goquery from 1.8.1 to 1.9.0

Bump github.com/PuerkitoBio/goquery from 1.8.1 to 1.9.0 #64

Workflow file for this run

name: Go Build
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
go-version: ["1.18", "1.19"]
steps:
- uses: actions/checkout@v3
- name: Set up Go ${{ matrix.go-version }}
uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go-version }}
- name: Build
run: make build
- name: Test
run: go test -v ./...