Files
atlas/.gitea/workflows/ci.yml
othman.suseno 4991a95008
Some checks failed
CI / build (push) Failing after 3m43s
initial project structure
2025-12-14 15:48:02 +07:00

20 lines
337 B
YAML

name: CI
on:
push:
branches: [ "main", "develop" ]
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
with:
go-version: '1.22'
- name: Test
run: go test ./...
- name: Build
run: go build ./cmd/...