Skip to content

build(deps): bump github.com/antchfx/jsonquery from 1.3.3 to 1.3.5 #955

build(deps): bump github.com/antchfx/jsonquery from 1.3.3 to 1.3.5

build(deps): bump github.com/antchfx/jsonquery from 1.3.3 to 1.3.5 #955

Workflow file for this run

name: Test
on:
push:
branches:
- main
paths:
- "**/*.go"
- "go.mod"
- "go.sum"
- "Makefile"
- ".github/workflows/test.yaml"
pull_request:
types: [opened, reopened, synchronize]
branches:
- main
paths:
- "**/*.go"
- "go.mod"
- "go.sum"
- "Makefile"
- ".github/workflows/test.yaml"
jobs:
test:
name: Unit Testing
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-13]
steps:
- name: Checkout Source Code
uses: actions/checkout@v4
- name: Setup Go Environment
uses: actions/setup-go@v5
with:
go-version-file: go.mod
id: go
- name: Go Get dependencies
run: go get -v -t -d ./...
- name: Go Test
run: make test TEST_FLAGS="-coverprofile=coverage.txt -covermode=atomic"
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4.4.1
with:
file: ./coverage.txt