fix
This commit is contained in:
parent
31b9b633ae
commit
a0925273bf
3 changed files with 5 additions and 2 deletions
2
.github/workflows/check.yml
vendored
2
.github/workflows/check.yml
vendored
|
@ -11,7 +11,7 @@ jobs:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Clone the repository.
|
- name: Clone the repository.
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
- name: Get packages for the Flutter project.
|
- name: Get packages for the Flutter project.
|
||||||
run: scripts/pub_get_all.sh
|
run: scripts/pub_get_all.sh
|
||||||
|
|
2
.github/workflows/release.yml
vendored
2
.github/workflows/release.yml
vendored
|
@ -16,7 +16,7 @@ jobs:
|
||||||
java-version: '17'
|
java-version: '17'
|
||||||
|
|
||||||
- name: Clone the repository.
|
- name: Clone the repository.
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
- name: Get packages for the Flutter project.
|
- name: Get packages for the Flutter project.
|
||||||
run: scripts/pub_get_all.sh
|
run: scripts/pub_get_all.sh
|
||||||
|
|
|
@ -28,6 +28,9 @@ class FakeStorageService extends Fake implements StorageService {
|
||||||
),
|
),
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@override
|
||||||
|
Future<Set<String>> getUntrackedTrashPaths(Iterable<String> knownPaths) => SynchronousFuture({});
|
||||||
|
|
||||||
@override
|
@override
|
||||||
Future<String> getVaultRoot() => SynchronousFuture('/vault/');
|
Future<String> getVaultRoot() => SynchronousFuture('/vault/');
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue