diff --git a/.github/workflows/pr.yaml b/.github/workflows/pr.yaml index 6df2c4f8..50931677 100644 --- a/.github/workflows/pr.yaml +++ b/.github/workflows/pr.yaml @@ -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 diff --git a/.github/workflows/push.yaml b/.github/workflows/push.yaml index e4e23d55..ec131aca 100644 --- a/.github/workflows/push.yaml +++ b/.github/workflows/push.yaml @@ -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 diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index b30077eb..5d8eb80c 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -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