Skip to content

Merge pull request #52 from readicculus/dependabot/pip/pyyaml-6.0.1 #102

Merge pull request #52 from readicculus/dependabot/pip/pyyaml-6.0.1

Merge pull request #52 from readicculus/dependabot/pip/pyyaml-6.0.1 #102

Workflow file for this run

name: Run Tests
on:
workflow_dispatch:
push:
branches:
- master
jobs:
tests-ubuntu-latest:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
# with:
# lfs: true
# - name: Set up Python
# uses: actions/setup-python@v2
# with:
# python-version: '3.9' # SemVer's version range syntax
# env:
# AGENT_TOOLSDIRECTORY: /opt/hostedtoolcache
# RUNNER_TOOL_CACHE: /opt/hostedtoolcache
- name: Install Python
run: |
sudo add-apt-repository -y ppa:deadsnakes/ppa
sudo apt-get update -y
sudo apt-get install -y python3.9
sudo apt install python3-pip -y
sudo apt-get install python3-tk -y
- name: Install dependencies
run: |
python3 -m pip install --upgrade pip
if [ -f requirements.txt ]; then python3 -m pip install -r requirements.txt; fi
if [ -f tests/requirements.txt ]; then python3 -m pip install -r tests/requirements.txt; fi
- name: Run Tests
run: python3 -m unittest discover -s tests -t tests
tests-windows-latest:
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
lfs: true
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.9'
- name: Install dependencies
run: |
python3 -m pip install --upgrade pip
python3 -m pip install -r requirements.txt
python3 -m pip install -r tests\requirements.txt
- name: Run Tests
run: python3 -m unittest discover -s tests -t tests