这是indexloc提供的服务,不要输入任何密码
Skip to content

chore(deps): bump the root-pub group across 1 directory with 2 updates #101

chore(deps): bump the root-pub group across 1 directory with 2 updates

chore(deps): bump the root-pub group across 1 directory with 2 updates #101

Workflow file for this run

name: Tests
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
sdk: [stable, beta]
fail-fast: false
steps:
- uses: actions/checkout@v4
- name: Setup Dart
uses: dart-lang/setup-dart@v1
with:
sdk: ${{ matrix.sdk }}
- name: Install dependencies
run: |
dart pub global activate melos
melos bootstrap
- name: Setup integration test
run: |
cd integration_test
./setup.sh
- name: Run tests
run: melos run test
- name: Run integration tests
run: |
cd integration_test/petstore/petstore_test
dart pub get
dart test --concurrency=1