-
Notifications
You must be signed in to change notification settings - Fork 108
57 lines (49 loc) · 1.24 KB
/
pr.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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
# Copyright 2020, Data61, CSIRO (ABN 41 687 119 230)
#
# SPDX-License-Identifier: BSD-2-Clause
# Actions to run on pull requests
name: PR
on: [pull_request]
jobs:
gitlint:
name: Gitlint
runs-on: ubuntu-latest
steps:
- uses: seL4/ci-actions/gitlint@master
with:
token: ${{ secrets.READ_TOKEN }}
whitespace:
name: 'Trailing Whitespace'
runs-on: ubuntu-latest
steps:
- uses: seL4/ci-actions/git-diff-check@master
with:
token: ${{ secrets.READ_TOKEN }}
shell:
name: 'Portable Shell'
runs-on: ubuntu-latest
steps:
- uses: seL4/ci-actions/bashisms@master
with:
token: ${{ secrets.READ_TOKEN }}
style:
name: Style
runs-on: ubuntu-latest
steps:
- uses: seL4/ci-actions/style@master
with:
token: ${{ secrets.READ_TOKEN }}
thylint:
name: 'Theory Linter'
runs-on: ubuntu-latest
steps:
- uses: seL4/ci-actions/thylint@master
with:
token: ${{ secrets.READ_TOKEN }}
- uses: yuzutech/annotations-action@v0.4.0
with:
repo-token: "${{ secrets.GITHUB_TOKEN }}"
title: 'File annotations for theory linter'
input: './annotations.json'
continue-on-error: true
if: always()