From d96da7e23b3adc9bfac5f7f8665b329643476f9b Mon Sep 17 00:00:00 2001 From: patnr Date: Fri, 15 Sep 2023 14:17:49 +0200 Subject: [PATCH] Update CI config --- .github/workflows/tests.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index c9a5c6b..80db068 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -5,6 +5,8 @@ on: branches: [ "master" ] pull_request: branches: [ "master", "dev" ] + schedule: + - cron: '0 9 * * MON' permissions: contents: read @@ -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: |