forked from KITmetricslab/covid19-forecast-hub-de
-
Notifications
You must be signed in to change notification settings - Fork 0
33 lines (29 loc) · 938 Bytes
/
ValidationV2.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
name: Validations v2
on:
pull_request_target:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [10.2]
steps:
- uses: actions/checkout@v2
with:
repository: 'KITmetricslab/covid19-forecast-hub-de-validations'
# - name: Use Node.js ${{ matrix.node-version }}
# uses: actions/setup-node@v1
# with:
# node-version: ${{ matrix.node-version }}
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: '3.8' # Version range or exact version of a Python version to use, using SemVer's version range syntax
architecture: 'x64' # optional x64 or x86. Defaults to x64 if not specified
# - run: npm install
- run: pip3 install -r requirements.txt
- run: python3 main.py
env:
GH_TOKEN: ${{secrets.GITHUB_TOKEN}}
IMGBB_TOKEN: ${{secrets.IMGBB_TOKEN}}