-
Notifications
You must be signed in to change notification settings - Fork 0
42 lines (41 loc) · 964 Bytes
/
ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
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) }}