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 2dcb0c1 commit e4d2ad6Copy full SHA for e4d2ad6
1 file changed
.github/workflows/ci.yml
@@ -12,6 +12,9 @@ jobs:
12
13
checks:
14
15
+ env:
16
+ POEXAM_VERSION: "0.0.12"
17
+
18
strategy:
19
matrix:
20
os:
@@ -23,10 +26,19 @@ jobs:
23
26
24
27
- uses: actions/checkout@v7
25
28
- - name: Install dependencies
- run: |
- sudo apt-get install gettext
29
- cargo install --version 0.0.12 poexam
+ - name: Install gettext
30
+ run: sudo apt-get install gettext
31
32
+ - name: Cache poexam
33
+ id: cache-poexam
34
+ uses: actions/cache@v4
35
+ with:
36
+ path: ~/.cargo/bin/poexam
37
+ key: poexam-${{ env.POEXAM_VERSION }}-${{ runner.os }}
38
39
+ - name: Install poexam
40
+ if: steps.cache-poexam.outputs.cache-hit != 'true'
41
+ run: cargo install --version "$POEXAM_VERSION" poexam
42
43
- name: Check gettext files
44
run: make gettext
0 commit comments