Files
teatea/.github/workflows/ci.yml
ssig33 177a149de8
All checks were successful
CI / test (push) Successful in 16s
Renovate / renovate (push) Successful in 1m45s
Merge pull request 'Update actions/setup-go action to v6' (#4) from renovate/actions-setup-go-6.x into main
Reviewed-on: #4
2025-12-01 18:17:52 +09:00

35 lines
623 B
YAML

name: CI
on:
push:
branches: [main]
pull_request:
branches: ["*"]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Set up Go
uses: actions/setup-go@v6
with:
go-version: "1.25"
- name: Install dependencies
run: go mod download
- name: Run tests
run: go test -v ./...
- name: Build
run: go build -v ./...
- name: Upload APK as artifact
uses: https://github.com/christopherHX/gitea-upload-artifact@v4
with:
name: teatea-linux-amd64
path: teatea