Make CLI give better errors #210
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 | |
jobs: | |
test: | |
container: | |
image: golang:latest | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: script | |
run: | | |
git config --global --add safe.directory $PWD | |
make check | |
'on': | |
push: | |
branches: | |
- '*' | |
pull_request: | |
branches: | |
- '*' |