Skip to content

fix compilation of parsing library #153

fix compilation of parsing library

fix compilation of parsing library #153

Workflow file for this run

name: Run tests.
on:
push:
branches:
- 'main'
pull_request:
branches:
- 'main'
jobs:
buildAndTest:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.18'
- name: Build
run: make
- name: Test
run: make test
testGoInstall:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.18'
- name: Go to cmd/cpush and try to go install
run: cd cmd/cpush; go install