Skip to content

Update module github.com/PuerkitoBio/goquery to v1.9.1 - autoclosed #72

Update module github.com/PuerkitoBio/goquery to v1.9.1 - autoclosed

Update module github.com/PuerkitoBio/goquery to v1.9.1 - autoclosed #72

Workflow file for this run

on: [push, pull_request]
name: Test
jobs:
test:
strategy:
matrix:
go-version: [1.14.x]
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Install Go
uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@v4
- name: Set GOPATH
run: go env -w GOPATH=$HOME/go
- name: Set GOBIN
run: mkdir bin && export GOBIN=$GOPATH/bin
- name: go get
run: go get ./...
- name: go build
run: go build
- name: Test
run: go test ./...