-
Notifications
You must be signed in to change notification settings - Fork 1
63 lines (58 loc) · 1.67 KB
/
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
name: Continuous Integration
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
check-python:
needs: []
runs-on: ubuntu-latest
steps:
- name: "Set up GitHub Actions"
uses: actions/checkout@v3
- name: "Set up Python 3.8"
uses: actions/setup-python@v4
with:
python-version: 3.8
- name: "Install Python dependencies"
run: |
pip install --no-cache-dir --upgrade pip setuptools wheel
pip install --no-cache-dir --requirement requirements-dev.txt
- name: "Check code format"
run: |
make check
check-shell:
needs: []
runs-on: ubuntu-latest
steps:
- name: "Set up GitHub Actions"
uses: actions/checkout@v3
- name: "Install shell script utilities"
run: |
sudo apt-get --yes install shellcheck
- name: "Check shell scripts format"
run: |
shellcheck --shell=sh $(find "scripts" -type f -name "*.sh")
validate:
needs: [check-python, check-shell]
runs-on: ubuntu-latest
steps:
- name: "Set up GitHub Actions"
uses: actions/checkout@v3
- name: "Set up Python 3.8"
uses: actions/setup-python@v4
with:
python-version: 3.8
- name: "Install Python dependencies"
run: |
pip install packtivity
- name: "Check workflow steps syntax"
run: |
packtivity-validate "workflow/yadage/steps.yml#configure"
packtivity-validate "workflow/yadage/steps.yml#generate"
packtivity-validate "workflow/yadage/steps.yml#pythia"
packtivity-validate "workflow/yadage/steps.yml#delphes"
packtivity-validate "workflow/yadage/steps.yml#combine"