install GNU make for Windows, needed from some point post 2023-09-21 #370
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: perl | |
on: | |
push: | |
branches: | |
- '*' | |
tags-ignore: | |
- '*' | |
pull_request: | |
create: | |
jobs: | |
notify: | |
runs-on: ubuntu-latest | |
continue-on-error: true | |
if: ${{ always() }} | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: ./github-actions/irc-notifications | |
with: | |
target-notifications: true | |
ci: | |
runs-on: 'ubuntu-latest' | |
if: ${{ github.event_name == 'push' || github.event_name == 'pull_request' }} | |
needs: notify | |
strategy: | |
fail-fast: false | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Run yamllint on actions | |
run: | | |
yamllint --format github github-actions | |
build-status: | |
runs-on: ubuntu-latest | |
continue-on-error: true | |
if: ${{ always() }} | |
needs: [ 'ci' ] | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: ./github-actions/irc-notifications | |
with: | |
target-build-status: true | |
needs: ${{ toJSON(needs) }} |