feat: show version in title #103
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: Main | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
Main: | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
steps: | |
- name: Code checkout | |
uses: actions/checkout@v3 | |
- name: Go setup | |
uses: actions/setup-go@v3 | |
with: | |
go-version: 'stable' | |
- name: Install ubuntu dependencies | |
run: sudo apt-get install gcc libgl1-mesa-dev xorg-dev | |
- name: Install build dependencies | |
run: make deps | |
- name: Code build | |
run: make build | |
- name: Code format | |
run: make format && git diff --exit-code | |
- name: Code test | |
run: make test | |
- name: Code lint | |
run: make lint |