first commit - migrated from codeberg

This commit is contained in:
Charlotte Croce 2025-04-20 11:17:03 -04:00
commit 5ead03e1f7
567 changed files with 102721 additions and 0 deletions

View 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

View 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
View file

@ -0,0 +1,3 @@
[pages]
enabled = true
branch = "gh-pages"

View 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 }}