46c8c38aa7
Test / test (push) Successful in 7m35s
Signed-off-by: Peter Siegmund <developer@mars3142.org>
29 lines
552 B
YAML
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 |