We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8809cd5 commit 331dbacCopy full SHA for 331dbac
.github/workflows/build.yml
@@ -9,11 +9,22 @@ on:
9
jobs:
10
linux:
11
runs-on: ubuntu-latest
12
+ strategy:
13
+ matrix:
14
+ encoding:
15
+ - ICONV
16
+ - ICU
17
+ env:
18
+ ENCODING_TYPE: ${{matrix.encoding}}
19
steps:
20
- uses: actions/checkout@v3
21
- name: restore
22
run: |
23
sudo apt-get install -y libgtest-dev
24
+ - name: restore ICU
25
+ run: |
26
+ sudo apt-get install -y libicu-dev
27
+ if: matrix.encoding == "ICU"
28
- name: build
29
run: .build/build
30
- name: unittest
0 commit comments