adjusting W3C comments #58
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: vissv2server build check | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
paths: | |
- ".github/workflows/vissv2server-build.yml" | |
- "server/**" | |
workflow_dispatch: | |
concurrency: | |
group: ${{ github.ref }}-${{ github.workflow }} | |
cancel-in-progress: true | |
jobs: | |
vissv2server-test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v4 | |
- name: Build vissv2server | |
run: | | |
cd server/vissv2server | |
go build | |
- name: Verify that help succeeds | |
run: | | |
cd server/vissv2server | |
./vissv2server --help |