Skip to content

build(deps): bump github.com/tidwall/gjson from 1.17.2 to 1.17.3 #268

build(deps): bump github.com/tidwall/gjson from 1.17.2 to 1.17.3

build(deps): bump github.com/tidwall/gjson from 1.17.2 to 1.17.3 #268

Workflow file for this run

name: Build
on:
push:
branches:
- main
paths-ignore:
- '**.md'
pull_request:
branches:
- main
paths-ignore:
- '**.md'
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
go: ['1.21', '1.22']
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}
- uses: actions/cache@v4
with:
path: |
~/go/pkg/mod
~/go/bin
~/.cache/golangci-lint
key: ${{ runner.os }}-go-${{ matrix.go }}-${{ hashFiles('**/go.sum') }}
restore-keys: ${{ runner.os }}-go-${{ matrix.go }}
- uses: golangci/golangci-lint-action@v6
- name: check tools
id: check_tools
uses: andstor/file-existence-action@v3
with:
files: '/home/runner/go/bin/mage, /home/runner/go/bin/tparse'
- name: setup tools
if: steps.check_tools.outputs.files_exists != 'true'
run: |
go install github.com/magefile/mage@latest
go install github.com/mfridman/tparse@latest
- name: test
run: mage test
- uses: codecov/codecov-action@v4
with:
token: ${{secrets.CODECOV_TOKEN}}
file: ./codecov.out
flags: tests
name: main-tests