We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 19af070 commit 7d3fc8dCopy full SHA for 7d3fc8d
.github/workflows/ci.yaml
@@ -11,6 +11,11 @@ concurrency:
11
group: ${{ github.workflow }}-${{ github.ref }}
12
cancel-in-progress: true
13
14
+env:
15
+ # Workaround for https://github.com/dotnet/format/issues/1805 which affects the lint action
16
+ DOTNET_INSTALL_DIR: .temp/dotnet
17
+ DOTNET_ROOT: .temp/dotnet
18
+
19
jobs:
20
main:
21
name: CI
global.json
@@ -2,6 +2,7 @@
2
"sdk": {
3
"version": "7.0.100",
4
"allowPrerelease": false,
5
- "rollForward": "latestFeature"
+ "rollForward": "latestMinor",
6
+ "_rollForward": "Workaround for https://github.com/dotnet/format/issues/1805 [TODO: use 'latestFeature' instead]"
7
}
8
0 commit comments