This repository has been archived by the owner on Dec 3, 2024. It is now read-only.
Archive notice #35
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This workflow will install Python dependencies, then run unit testing across the earliest and latest supported Python versions | |
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions | |
name: Run unit tests | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
python_36: | |
# We need to use 20.04 to get access to the libolm3 package | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python 3.6 | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3.6 | |
- name: Install project dependencies | |
run: | | |
# Install libolm, required for end-to-end encryption functionality | |
sudo apt install -y libolm-dev libolm3 | |
# Install python dependencies | |
python setup.py install | |
- name: Run unit tests | |
run: | | |
python -m unittest | |
python_39: | |
# We need to use 20.04 to get access to the libolm3 package | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python 3.9 | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3.9 | |
- name: Install project dependencies | |
run: | | |
# Install libolm, required for end-to-end encryption functionality | |
sudo apt install -y libolm-dev libolm3 | |
# Install python dependencies | |
python setup.py install | |
- name: Run unit tests | |
run: | | |
python -m unittest |