Skip to content

Commit 552493f

Browse files
committed
Install Make on alpine image
1 parent f5cc162 commit 552493f

File tree

3 files changed

+9
-0
lines changed

3 files changed

+9
-0
lines changed

.github/workflows/pr.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,9 @@ jobs:
4545
with:
4646
ref: refs/pull/${{ github.event.number }}/merge
4747

48+
- name: Install Make
49+
run: apk add make
50+
4851
- name: Lint
4952
run: make lint
5053

.github/workflows/push.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,9 @@ jobs:
4343

4444
- uses: actions/checkout@v4
4545

46+
- name: Install Make
47+
run: apk add make
48+
4649
# This gets killed, probably due to memory usage
4750
# - name: Lint
4851
# run: make lint

.github/workflows/release.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,9 @@ jobs:
4242

4343
- uses: actions/checkout@v4
4444

45+
- name: Install Make
46+
run: apk add make
47+
4548
# This gets killed, probably due to memory usage
4649
# - name: Lint
4750
# run: make lint

0 commit comments

Comments
 (0)