We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ea7ea57 commit fb55782Copy full SHA for fb55782
.github/util/initialize/action.yml
@@ -31,7 +31,7 @@ runs:
31
- run: npm install
32
shell: ${{ runner.os == 'Windows' && 'powershell' || 'bash' }}
33
34
- - uses: bufbuild/buf-setup-action@v1.47.2
+ - uses: bufbuild/buf-setup-action@v1.48.0
35
with: {github_token: "${{ inputs.github-token }}"}
36
37
# This composite action requires bash, but bash is not available on windows-arm64 runner.
test/double_check_test.dart
@@ -85,8 +85,8 @@ void main() {
85
'sass_api', sassPubspec, pkgPubspec.version!));
86
87
test("matches SDK version", () {
88
- expect(pkgPubspec.environment!["sdk"],
89
- equals(sassPubspec.environment!["sdk"]));
+ expect(pkgPubspec.environment["sdk"],
+ equals(sassPubspec.environment["sdk"]));
90
});
91
92
test("matches dartdoc version", () {
0 commit comments