Skip to content
/ uklatn Public

Commit 02a6bbf

Browse files
committed
update github runners
1 parent fe7a453 commit 02a6bbf

File tree

2 files changed

+10
-4
lines changed

2 files changed

+10
-4
lines changed

.github/workflows/build-c.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,7 @@ on:
99
paths:
1010
- 'c/**'
1111
- 'CMakeLists.txt'
12-
13-
env:
14-
LIBICU: libicu70
12+
- '.github/workflows/build-c.yml'
1513

1614
jobs:
1715

@@ -28,7 +26,7 @@ jobs:
2826
- name: Install ICU
2927
run: |
3028
# sudo apt-get update -y
31-
sudo apt-get install -y libicu-dev ${{env.LIBICU}}
29+
sudo apt-get install -y libicu-dev
3230
3331
- name: Configure CMake
3432
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{matrix.BUILD_TYPE}}

.github/workflows/build-csharp.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ on:
88
branches: [main]
99
paths:
1010
- 'csharp/**'
11+
- '.github/workflows/build-csharp.yml'
1112

1213
jobs:
1314

@@ -17,6 +18,13 @@ jobs:
1718
steps:
1819
- uses: actions/checkout@v4
1920

21+
- uses: actions/setup-dotnet@v4
22+
with:
23+
dotnet-version: 6
24+
25+
- name: .NET version
26+
run: dotnet --info
27+
2028
- name: Test
2129
working-directory: ${{github.workspace}}/csharp
2230
run: dotnet test

0 commit comments

Comments
 (0)