Skip to content

Commit

Permalink
Updated submodule code 3
Browse files Browse the repository at this point in the history
  • Loading branch information
Chingiz Safarli authored and Chingiz Safarli committed May 1, 2023
1 parent c8eb699 commit cff826f
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,17 @@ jobs:
- uses: actions/checkout@v2
with:
submodules: 'recursive'

- name: Cache hiredis library
id: cache-hiredis
uses: actions/cache@v2
with:
path: /usr/local/lib
key: hiredis-${{ runner.os }}-${{ hashFiles('vendor/hiredis/Makefile') }}

- name: Install hiredis library
if: steps.cache-hiredis.outputs.cache-hit != 'true'
run: sudo apt-get update && sudo apt-get install -y libhiredis-dev

- name: Build
run: make

0 comments on commit cff826f

Please sign in to comment.