Skip to content

Feat/reflection (#28) #74

Feat/reflection (#28)

Feat/reflection (#28) #74

Workflow file for this run

name: test
on:
push:
paths-ignore:
- 'README.md'
- 'resources.md'
- 'docs/**'
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
go-version: [1.19.1]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go-version }}
- name: build tools
run: |
cd tools && for i in ./*.go; do go build "$i"; done && cd ..
- name: Test
run: tools/build
env:
VERBOSE: 1
TESTING: 1