This commit is contained in:
12
.gitea/ISSUE_TEMPLATE/bug.md
Normal file
12
.gitea/ISSUE_TEMPLATE/bug.md
Normal file
@@ -0,0 +1,12 @@
|
||||
---
|
||||
name: Bug report
|
||||
about: Report a bug in atlasOS
|
||||
---
|
||||
|
||||
### What happened?
|
||||
|
||||
### Expected behavior
|
||||
|
||||
### Steps to reproduce
|
||||
|
||||
### Logs / Screenshots
|
||||
10
.gitea/ISSUE_TEMPLATE/feature.md
Normal file
10
.gitea/ISSUE_TEMPLATE/feature.md
Normal 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
19
.gitea/workflows/ci.yml
Normal 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/...
|
||||
Reference in New Issue
Block a user