We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7acb614 commit dee9011Copy full SHA for dee9011
.github/workflows/main.yml
@@ -16,9 +16,17 @@ jobs:
16
- name: Get current date
17
id: date
18
run: echo "::set-output name=date::$(date +'%Y%m%d%H%M')"
19
+ # Do not download and install TLAPS over and over again.
20
+ - uses: actions/cache@v1
21
+ id: cache
22
+ with:
23
+ path: tlaps/
24
+ key: tlaps1.4.5
25
- name: Get TLAPS
26
+ if: steps.cache.outputs.cache-hit != 'true' # see actions/cache above
27
run: wget https://tla.msr-inria.inria.fr/tlaps/dist/current/tlaps-1.4.5-x86_64-linux-gnu-inst.bin
28
- name: Install TLAPS
29
30
run: |
31
chmod +x tlaps-1.4.5-x86_64-linux-gnu-inst.bin
32
./tlaps-1.4.5-x86_64-linux-gnu-inst.bin -d tlaps
0 commit comments