Skip to content

Commit

Permalink
Install Make on alpine image
Browse files Browse the repository at this point in the history
  • Loading branch information
gtopper committed Jan 19, 2025
1 parent f5cc162 commit 552493f
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,9 @@ jobs:
with:
ref: refs/pull/${{ github.event.number }}/merge

- name: Install Make
run: apk add make

- name: Lint
run: make lint

Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/push.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,9 @@ jobs:

- uses: actions/checkout@v4

- name: Install Make
run: apk add make

# This gets killed, probably due to memory usage
# - name: Lint
# run: make lint
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,9 @@ jobs:

- uses: actions/checkout@v4

- name: Install Make
run: apk add make

# This gets killed, probably due to memory usage
# - name: Lint
# run: make lint
Expand Down

0 comments on commit 552493f

Please sign in to comment.