Skip to content

NEW json parser

NEW json parser #13

Workflow file for this run

---
name: Unit Tests
on:
pull_request:
types: ['opened', 'synchronize']
paths:
- '**.go'
- 'vendor/**'
- '.github/workflows/**'
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: true
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v4
with:
go-version-file: 'go.mod'
- run: make test
env:
GITHUB_ACTIONS_STAGE: "UNIT_TESTS"