Skip to content

Commit e4f44a3

Browse files
authored
Update continuous-integration-workflow.yml
ICU (International Components for Unicode) is missing on the ubuntu-latest GitHub Actions runner. The ICU package is necessary for globalization support when running .NET Core applications. The newer Ubuntu versions may not have the required ICU package installed by default.
1 parent 7c293aa commit e4f44a3

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

.github/workflows/continuous-integration-workflow.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,9 @@ jobs:
2222
with:
2323
dotnet-version: ${{ matrix.dotnet-version }}
2424

25+
- name: Install ICU library
26+
run: sudo apt-get update && sudo apt-get install -y libicu-dev
27+
2528
- name: Install GitVersion
2629
uses: gittools/actions/gitversion/[email protected]
2730
with:

0 commit comments

Comments
 (0)