Skip to content

Commit

Permalink
use working-directory for ci workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
austinmilt committed Apr 22, 2024
1 parent dbd096f commit 778fc8d
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,13 +41,17 @@ jobs:
sdk: ${{ matrix.dart-version }}

- name: Download webrpc binaries
run: cd tests && ./scripts/download.sh ${{ matrix.webrpc-version }} .tmp/
working-directory: ./tests
run: ./scripts/download.sh ${{ matrix.webrpc-version }} .tmp/

- name: Export path of webrpc binaries
run: cd tests && echo "$PWD/.tmp" >> $GITHUB_PATH
working-directory: ./tests
run: echo "$PWD/.tmp" >> $GITHUB_PATH

- name: Install Dart dependencies
run: cd tests && dart pub get
working-directory: ./tests
run: dart pub get

- name: Run interoperability tests
run: cd tests && ./scripts/test.sh
working-directory: ./tests
run: ./scripts/test.sh

0 comments on commit 778fc8d

Please sign in to comment.