Merge pull request #346 from rusq/v2-authui #442
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: [ v2 ] | |
pull_request: | |
branches: [ v2 ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: "1.23" | |
- name: Build | |
run: go build -v ./... | |
- name: Check Catalogue | |
run: | | |
BASE_DIR="contrib" go run ./contrib/_gen -v | |
- name: AUR build test | |
run: make aurtest | |
- name: Test | |
run: make test |