LogRequests: Log error on failed request (#16) #33
This file contains hidden or 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: Tests | |
| on: | |
| push: | |
| branches: | |
| - master | |
| pull_request: | |
| jobs: | |
| unit-tests: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Git clone | |
| uses: actions/checkout@v3 | |
| with: | |
| ref: ${{ github.event.pull_request.head.sha }} # Checkout Pull Request HEAD commit instead of the default Pull Request merge commit. | |
| fetch-depth: 1 | |
| - name: Setup golang:1.21 | |
| uses: actions/setup-go@v4 | |
| with: | |
| go-version: "1.21.0" | |
| - name: Run tests | |
| run: | | |
| go test ./... |