Skip to content

[#106] Founders Tab Displays Data #79

[#106] Founders Tab Displays Data

[#106] Founders Tab Displays Data #79

name: Python Build and Test
on:
pull_request:
branches:
- main
jobs:
build_and_test_windows:
runs-on: windows-latest
timeout-minutes: 10
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.x'
- name: Install Python Dependencies
run: |
pip install -r ./workflow/requirements.txt
- name: Build
run: |
chmod +x ./workflow/build.bat
bash ./workflow/build.bat
- name: Test
run: |
chmod +x ./workflow/test.bat
bash ./workflow/test.bat
build_and_test_linux:
runs-on: ubuntu-latest
timeout-minutes: 600
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.x'
- name: Install Ubuntu Dependencies
run:
sudo apt-get install libgtk-3-dev
- name: Install Python Dependencies
run: |
pip install -r ./workflow/requirements.txt
- name: Build
run: |
chmod +x ./workflow/build.sh
bash ./workflow/build.sh
- name: Test
run: |
chmod +x ./workflow/test.sh
bash ./workflow/test.sh