first commit - migrated from codeberg
This commit is contained in:
commit
5ead03e1f7
567 changed files with 102721 additions and 0 deletions
29
.codeberg/ISSUE_TEMPLATE/bug_report.md
Normal file
29
.codeberg/ISSUE_TEMPLATE/bug_report.md
Normal file
|
@ -0,0 +1,29 @@
|
|||
---
|
||||
name: Bug report
|
||||
about: Create a report to help us improve
|
||||
title: ''
|
||||
labels: 'bug'
|
||||
assignees: ''
|
||||
|
||||
---
|
||||
|
||||
### Describe the bug
|
||||
|
||||
|
||||
|
||||
### Steps To Reproduce
|
||||
|
||||
|
||||
|
||||
### Screenshots (If applicable)
|
||||
|
||||
|
||||
|
||||
### Environment:
|
||||
- Device:
|
||||
- OS:
|
||||
- App Version:
|
||||
|
||||
### Additional context
|
||||
|
||||
|
16
.codeberg/ISSUE_TEMPLATE/feature_request.md
Normal file
16
.codeberg/ISSUE_TEMPLATE/feature_request.md
Normal file
|
@ -0,0 +1,16 @@
|
|||
---
|
||||
name: Feature request
|
||||
about: Suggest an idea for this project
|
||||
title: ''
|
||||
labels: 'enhancement'
|
||||
assignees: ''
|
||||
|
||||
---
|
||||
|
||||
### Is your feature request related to a problem?
|
||||
|
||||
|
||||
|
||||
### Describe the solution you'd like
|
||||
|
||||
|
3
.codeberg/pages.toml
Normal file
3
.codeberg/pages.toml
Normal file
|
@ -0,0 +1,3 @@
|
|||
[pages]
|
||||
enabled = true
|
||||
branch = "gh-pages"
|
39
.codeberg/workflows/ci_testing.yml
Normal file
39
.codeberg/workflows/ci_testing.yml
Normal file
|
@ -0,0 +1,39 @@
|
|||
name: ci testing
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ main, develop ]
|
||||
pull_request:
|
||||
branches: [ main, develop ]
|
||||
|
||||
jobs:
|
||||
analyze:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
|
||||
- name: Setup Flutter
|
||||
uses: subosito/flutter-action@v2
|
||||
with:
|
||||
flutter-version: '3.27.4'
|
||||
channel: 'stable'
|
||||
|
||||
- name: Install dependencies
|
||||
run: flutter pub get
|
||||
|
||||
- name: Verify formatting
|
||||
run: dart format --output=none --set-exit-if-changed .
|
||||
|
||||
- name: Analyze project source
|
||||
run: flutter analyze
|
||||
|
||||
- name: Check for any outdated packages
|
||||
run: flutter pub outdated
|
||||
|
||||
- name: Run unit tests
|
||||
run: flutter test --coverage
|
||||
|
||||
- name: Upload coverage reports to Codecov
|
||||
uses: codecov/codecov-action@v5
|
||||
with:
|
||||
token: ${{ secrets.CODECOV_TOKEN }}
|
Loading…
Add table
Add a link
Reference in a new issue