Skip to content

Bump github.com/tidwall/gjson from 1.15.0 to 1.16.0 (#18) #58

Bump github.com/tidwall/gjson from 1.15.0 to 1.16.0 (#18)

Bump github.com/tidwall/gjson from 1.15.0 to 1.16.0 (#18) #58

Workflow file for this run

# This GitHub action runs your tests for each commit push and/or PR. Optionally
# you can turn it on using a cron schedule for regular testing.
#
name: Tests
on:
workflow_dispatch:
pull_request:
paths-ignore:
- "README.md"
push:
branches:
- main
paths-ignore:
- "README.md"
jobs:
test:
name: Test
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version-file: "go.mod"
- name: Get dependencies
run: |
go mod download
- name: Test
run: |
go test -v -cover ./...