test: fix tests failing on windows

This commit is contained in:
Aleksey Kulikov 2021-10-29 10:59:30 +03:00 committed by GitHub
parent f4e17b124d
commit a71bb14b86
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
8 changed files with 26 additions and 34 deletions

View file

@ -39,6 +39,11 @@ jobs:
runs-on: ${{ matrix.platform }}
steps:
- name: Set git to use LF
run: |
git config --global core.autocrlf false
git config --global core.eol lf
- uses: actions/checkout@v2
- uses: dart-lang/setup-dart@v1
with:
@ -52,4 +57,3 @@ jobs:
- name: Run tests
run: dart test --exclude-tags "remote_fetch" --platform vm
if: matrix.platform != 'windows-latest'