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 d96da7e
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .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,16 @@ jobs:
- name: Set up Python 3.10
uses: actions/setup-python@v3
with:
# Try reproducing Colab environment
python-version: "3.10"

- name: Install dependencies
- name: Setup environment similar to Colab
run: |
python -m pip install --upgrade pip
# Try reproducing Colab environment
pip install -r https://raw.githubusercontent.com/googlecolab/backend-info/main/pip-freeze.txt
- name: Install dependencies
run: |
pip install -r requirements-dev.txt
- name: Run tests
run: |
Expand Down

0 comments on commit d96da7e

Please sign in to comment.