Skip to content

Commit

Permalink
Update online.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
haochenpan authored Dec 12, 2023
1 parent cce9649 commit bd30089
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions .github/workflows/online.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,21 +7,21 @@ jobs:
download-and-store:
runs-on: ubuntu-latest

steps:
- name: Checkout Repository
uses: actions/checkout@v2
with:
path: $HOME
strategy:
matrix:
python-version: [ '3.11'] # Adjust Python versions as needed

- name: Download File
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
- name: Check File
run: |
ls -l $HOME/diaspora-event-sdk
- name: Check Repo
run: |
ls -l $HOME/diaspora-event-sdk
- 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
- name: Run pytest
run: pytest

0 comments on commit bd30089

Please sign in to comment.