refactor: make changes after repo moved here (#27) #77
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: ci | |
on: | |
push: | |
branches: [ "master" ] | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v3 | |
- name: Setup Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: 1.21.0 | |
- name: Install Gio Dependencies | |
run: sudo apt install gcc pkg-config libwayland-dev libx11-dev libx11-xcb-dev libxkbcommon-x11-dev libgles2-mesa-dev libegl1-mesa-dev libffi-dev libxcursor-dev libvulkan-dev | |
- name: Build | |
run: go build -v ./... | |
- name: Install goimports | |
run: go install golang.org/x/tools/cmd/goimports@latest | |
- name: Install gofumpt | |
run: go install mvdan.cc/gofumpt@latest | |
- name: Format | |
run: goimports -w . && gofumpt -w . | |
- name: Verify | |
run: | | |
if [ -n "$(git diff)" ]; then | |
git diff | |
exit 1 | |
fi | |
- name: Test | |
run: go test -v ./... | |
- name: Vet | |
run: go vet -v ./... | |
- name: Install staticcheck | |
run: go install honnef.co/go/tools/cmd/staticcheck@latest | |
- name: staticcheck | |
run: staticcheck ./... |