Skip to content

Commit

Permalink
Update CI config
Browse files Browse the repository at this point in the history
  • Loading branch information
patnr committed Sep 15, 2023
1 parent cf5e714 commit b8519cf
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ on:
branches: [ "master" ]
pull_request:
branches: [ "master", "dev" ]
schedule:
- cron: '0 9 * * MON'

permissions:
contents: read
Expand All @@ -19,11 +21,15 @@ jobs:
- name: Set up Python 3.10
uses: actions/setup-python@v3
with:
python-version: "3.10"
python-version: "3.10" # try to keep similar to Colab

- name: Install dependencies
- name: Setup environment similar to Colab
run: |
python -m pip install --upgrade pip
wget https://raw.githubusercontent.com/googlecolab/backend-info/main/pip-freeze.txt -O colab-freeze.txt
cat colab-freeze.txt | xargs -n 1 pip install # 1-at-a-time ⇒ ignore errors
- name: Install dependencies
run: |
pip install -r requirements-dev.txt
- name: Run tests
run: |
Expand Down

0 comments on commit b8519cf

Please sign in to comment.