build: Test against Go 1.22 #6
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: Build and Test | |
on: [push, pull_request] | |
permissions: | |
contents: read | |
jobs: | |
build: | |
name: Go CI | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
go: ['1.21', '1.22'] | |
steps: | |
- name: Check out source | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 #v4.1.1 | |
with: | |
fetch-depth: 0 | |
- name: Set up Go | |
uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 #v5.0.0 | |
with: | |
go-version: ${{ matrix.go }} | |
- name: Install Linters | |
run: "go install github.com/golangci/golangci-lint/cmd/[email protected]" | |
- uses: awalsh128/cache-apt-pkgs-action@a6c3917cc929dd0345bfb2d3feaf9101823370ad #v1.4.2 | |
with: | |
packages: git-restore-mtime libgtk-3-dev libwebkit2gtk-4.0-dev | |
version: 1.0 | |
# Restore original file modification times for test cache reasons | |
- name: restore timestamps | |
run: git restore-mtime | |
- name: Use test and module cache | |
uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 #v4.0.2 | |
with: | |
path: | | |
~/.cache/go-build | |
~/go/pkg/mod | |
key: go-test-${{ matrix.go }}-${{ github.sha }} | |
restore-keys: go-test-${{ matrix.go }} | |
- name: Test | |
run: ./run_tests.sh | |
lint-docs: | |
name: Lint Markdown | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 #v4.1.1 | |
- uses: DavidAnson/markdownlint-cli2-action@b4c9feab76d8025d1e83c653fa3990936df0e6c8 #v16.0.0 | |
continue-on-error: true | |
with: | |
globs: | | |
*.md |