Skip to content

ci - fix path

ci - fix path #4

name: Worflow to test support on multiple platforms
on:
push: # Triggers the workflow on push for whatever branch
paths-ignore: # Pushes that change only these file won't start the workflow
- 'README.md'
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
ubuntu-support:
runs-on: ubuntu-22.04
steps:
- name: Set up Python 3.10.9
uses: actions/[email protected]
with:
python-version: 3.10.9
- name: Print the version of Python # DEBUG
run: python --version
- name: Checkout the repository
uses: actions/[email protected]
- name: Print repo structure # DEBUG
run: ls -lR
- name: Install dependencies
run: pip install -r ./requirements.txt
- name: Print dependencies # DEBUG
run: pip freeze
- name: Run Flask server tests
run: python -m unittest test/app_test.py