-
Notifications
You must be signed in to change notification settings - Fork 104
55 lines (55 loc) · 1.77 KB
/
nightly-jobs.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
name: Nightly Jobs
env:
IO_APP_SLACK_HELPER_BOT_TOKEN: ${{ secrets.IO_APP_SLACK_HELPER_BOT_TOKEN }}
on:
schedule:
- cron: '0 03 * * *'
jobs:
pagopa_specs_diff:
runs-on: ubuntu-latest
environment: dev
steps:
- name: checkout repo content
uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab #v3.5.2
- name: setup python
uses: actions/setup-python@57ded4d7d5e986d7296eab16560982c6dd7c923b #v4.6.0
with:
python-version: '3.8'
- name: check api specs alignment
run: ./scripts/pagopa_api_check.sh
shell: bash
io_check_uris:
runs-on: ubuntu-latest
environment: dev
steps:
- name: checkout repo content
uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab #v3.5.2
- name: setup python
uses: actions/setup-python@57ded4d7d5e986d7296eab16560982c6dd7c923b #v4.6.0
with:
python-version: '3.8'
- name: install pipenv
run: pip install pipenv
- name: check uris validity on static texts
run: |
cd scripts/check_urls
pipenv install
pipenv run python3 check_urls.py
io_check_cie_button_exists_ios:
runs-on: ubuntu-latest
environment: dev
steps:
- name: checkout repo content
uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab #v3.5.2
- name: setup python
uses: actions/setup-python@57ded4d7d5e986d7296eab16560982c6dd7c923b #v4.6.0
with:
python-version: '3.8'
- name: install pipenv
run: pip install pipenv
- name: check cie button exists on ios
run: |
cd scripts/check_cie_button_exists
pipenv install
pipenv run python3 check_cie_button_exists_ios.py
shell: bash