Skip to content

Commit a20204a

Browse files
authored
re-add brackets
1 parent f307dcb commit a20204a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,15 +47,15 @@ jobs:
4747
- name: Install dependencies
4848
run: dart pub get --directory packages/dart
4949
- name: Run build_runner
50-
run: cd packages/dart && dart run build_runner build --delete-conflicting-outputs
50+
run: (cd packages/dart && dart run build_runner build --delete-conflicting-outputs)
5151
- name: Analyze code
5252
run: dart analyze packages/dart --fatal-infos
5353
- name: Lint
5454
run: dart format --output=none --set-exit-if-changed packages/dart
5555
- name: Publish dry run
5656
run: cd packages/dart && dart pub publish --dry-run
5757
- name: Run tests
58-
run: cd packages/dart && dart test --coverage=coverage
58+
run: (cd packages/dart && dart test --coverage=coverage)
5959
- name: Convert code coverage
6060
# Needs to be adapted to collect the coverage at all platforms if platform specific code is added.
6161
if: ${{ always() && matrix.os == 'ubuntu-latest' }}

0 commit comments

Comments
 (0)