introduce unit tests, drop auto_kill_prefix #1
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: Go | |
on: | |
push: | |
pull_request: | |
permissions: | |
contents: read | |
pull-requests: read | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: 'Setup Go' | |
uses: actions/setup-go@v4 | |
- name: 'Checkout Repository' | |
uses: actions/checkout@v3 | |
- name: 'Run tests' | |
run: make tests | |
- name: 'Build Vinegar' | |
run: make VINEGAR_GOFLAGS="--tags nogui" |