Skip to content

fix(crawl): skip 404 errors (#32) #153

fix(crawl): skip 404 errors (#32)

fix(crawl): skip 404 errors (#32) #153

Workflow file for this run

name: Test
on:
push:
branches:
- main
pull_request:
jobs:
unittest:
name: Unit Test
runs-on: ubuntu-latest
strategy:
matrix:
go-version: [ stable, oldstable ]
steps:
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go-version }}
- name: Check out code into the Go module directory
uses: actions/checkout@v3
- name: Run unit tests
run: go test ./...