Event Fabric Online Tests #8
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
name: Event Fabric Online Tests | |
on: | |
workflow_dispatch: | |
jobs: | |
download-and-store: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: [ '3.11'] # Adjust Python versions as needed | |
steps: | |
- name: Download Storage DB | |
run: | | |
mkdir -p $HOME/.diaspora | |
wget --no-check-certificate 'https://docs.google.com/uc?export=download&id=${{ secrets.STORAGE_DB_FOR_TESTING }}' -O $HOME/.diaspora/storage.db | |
- uses: actions/checkout@v4 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- run: python -m pip install -U pip setuptools | |
- run: python -m pip install -U tox pytest | |
- name: Run tox | |
run: tox |