initial project structure
Some checks failed
CI / build (push) Failing after 3m43s

This commit is contained in:
2025-12-14 15:48:02 +07:00
commit 4991a95008
8 changed files with 101 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
---
name: Bug report
about: Report a bug in atlasOS
---
### What happened?
### Expected behavior
### Steps to reproduce
### Logs / Screenshots

View File

@@ -0,0 +1,10 @@
---
name: Feature request
about: Suggest a feature for atlasOS
---
### Problem statement
### Proposed solution
### Alternatives considered

19
.gitea/workflows/ci.yml Normal file
View File

@@ -0,0 +1,19 @@
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/...