-
Notifications
You must be signed in to change notification settings - Fork 0
37 lines (32 loc) · 863 Bytes
/
route.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
name : License Office Pricing Manager
on:
schedule:
- cron: '30 16 */5 * *'
defaults:
run:
shell: bash
jobs:
AnalyzingMarket:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.11']
env:
ID : ${{ secrets.LICENSE_ID }}
PW : ${{ secrets.LICENSE_PW }}
li_url : ${{ secrets.LICENSE_URL }}
Api_key : ${{ secrets.API_KEY }}
steps:
- uses: actions/checkout@v4
- name: Get Python OpenSource Action
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Dependencies Installation
run: |
python -m pip install --upgrade pip
pip install selenium
pip install python-dotenv
pip install requests
- name: Run Data Fed
run: python ./fees_api.py