Skip to content

Commit

Permalink
update github runners
Browse files Browse the repository at this point in the history
  • Loading branch information
paiv committed Jan 26, 2025
1 parent fe7a453 commit 2d15bab
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/build-c.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,7 @@ on:
paths:
- 'c/**'
- 'CMakeLists.txt'

env:
LIBICU: libicu70
- '.github/workflows/build-c.yml'

jobs:

Expand All @@ -28,7 +26,7 @@ jobs:
- name: Install ICU
run: |
# sudo apt-get update -y
sudo apt-get install -y libicu-dev ${{env.LIBICU}}
sudo apt-get install -y libicu-dev
- name: Configure CMake
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{matrix.BUILD_TYPE}}
Expand Down
8 changes: 8 additions & 0 deletions .github/workflows/build-csharp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ on:
branches: [main]
paths:
- 'csharp/**'
- '.github/workflows/build-csharp.yml'

jobs:

Expand All @@ -17,6 +18,13 @@ jobs:
steps:
- uses: actions/checkout@v4

- uses: actions/setup-dotnet@v4
with:
dotnet-version: 6

- name: .NET version
run: dotnet --version --info

- name: Test
working-directory: ${{github.workspace}}/csharp
run: dotnet test

0 comments on commit 2d15bab

Please sign in to comment.