Skip to content

Add deploy workflow

Add deploy workflow #6

Workflow file for this run

name: Deploy
on:
pull_request:
branches:
- main
types: [opened, synchronize, reopened]
jobs:
deploy:
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python
uses: actions/[email protected]
with:
python-version: 3.10.0
architecture: "x64"
- name: Install pip requirements
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Run Python unit tests
run: |
python -u -m unittest tests/app_unittest.py