chore: remove unused file save dialog code from main window #13
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: | |
branches: [ "*" ] | |
pull_request: | |
branches: [ "master" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
go-version: [ '1.23.x', '1.24.x' ] | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Setup Go ${{ matrix.go-version }} | |
uses: actions/setup-go@v5 | |
with: | |
go-version: ${{ matrix.go-version }} | |
- name: Install lib dependencies | |
run: sudo apt install libx11-dev libgl1-mesa-dev xorg-dev libxkbcommon-dev | |
- name: Download dependencies | |
run: go mod tidy | |
- name: Build | |
run: go build -v ./... | |
- name: Test | |
run: go test -v ./... |