add support for optional sync flag to block on async ops till completion #489
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Pull Request Pipeline | |
on: [pull_request] | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
name: sanity checks - pull request | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-go@v4 | |
with: | |
go-version: '^1.18' | |
- name: run tests and build | |
run: make clean test bins | |
- name: lint | |
run: make tools lint |