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 8809cd5 commit 0a7e77aCopy full SHA for 0a7e77a
.github/workflows/build.yml
@@ -9,11 +9,21 @@ on:
9
jobs:
10
linux:
11
runs-on: ubuntu-latest
12
+ strategy:
13
+ matrix:
14
+ - encoding: ICONV
15
+ - encoding: ICU
16
+ env:
17
+ ENCODING_TYPE: ${{matrix.encoding}}
18
steps:
19
- uses: actions/checkout@v3
20
- name: restore
21
run: |
22
sudo apt-get install -y libgtest-dev
23
+ - name: restore ICU
24
+ run: |
25
+ sudo apt-get install -y libicu-dev
26
+ if: matrix.encoding == "ICU"
27
- name: build
28
run: .build/build
29
- name: unittest
0 commit comments