Files
via/.gitea/workflows/ci.yml
Ryan Hamamura a68c251d0a
Some checks failed
CI / Build and Test (push) Failing after 1m12s
CI / Build and Test (pull_request) Failing after 31s
chore: make Gitea the primary remote, GitHub as mirror
- Migrate CI workflow from GitHub Actions to Gitea Actions
- Update /pr command to create/merge PRs on Gitea only
- Update /release command to create releases on Gitea only
- Remove /pr-create and /pr-merge commands (consolidated into /pr)
- Push code and tags to both remotes for GitHub mirroring
2026-02-20 08:15:48 -10:00

27 lines
419 B
YAML

name: CI
on:
push:
branches:
- '**'
pull_request:
branches:
- '**'
jobs:
build-test:
name: Build and Test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: '1.25.4'
cache: true
- name: Run CI checks
run: bash ./ci-check.sh