Simply replace \
to /
rather than using Uri
when parsing a storage base directory
#71
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Run tests | |
on: [push, pull_request] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
platform: [ vm, chrome ] | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: dart-lang/[email protected] | |
- run: dart pub get | |
- run: dart analyze --fatal-infos | |
- run: dart test --chain-stack-traces --platform=${{ matrix.platform }} |