Files
toaster/.gitea/workflows/test.yaml
T
mars3142 46c8c38aa7
Test / test (push) Successful in 7m35s
initial commit
Signed-off-by: Peter Siegmund <developer@mars3142.org>
2026-04-18 14:06:56 +02:00

29 lines
552 B
YAML

name: Test
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: subosito/flutter-action@v2
with:
channel: stable
- name: Activate melos
run: dart pub global activate melos
- name: Bootstrap workspace
run: dart pub global run melos bootstrap
- name: Get dependencies
run: dart pub global run melos get
- name: Run tests
run: dart pub global run melos test