Add awaiting response management #34
Workflow file for this run
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: Test | |
on: | |
pull_request: | |
paths: | |
- '**' | |
- '!**.md' | |
- '!LICENSE' | |
push: | |
branches: [ main ] | |
paths: | |
- '**' | |
- '!**.md' | |
- '!LICENSE' | |
jobs: | |
test: | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@e2f20e631ae6d7dd3b768f56a5d2af784dd54791 # v2.5.0 | |
- name: Setup Go | |
uses: actions/setup-go@c4a742cab115ed795e34d4513e2cf7d472deb55f # v3.3.1 | |
with: | |
go-version: '1.18' | |
- name: Bootstrap tools | |
run: make bootstrap-tools | |
- name: Run linters | |
run: make lint | |
- name: Run tests | |
run: make test |