-
-
Notifications
You must be signed in to change notification settings - Fork 656
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
38 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
name: Weekly Tests | ||
|
||
on: | ||
schedule: | ||
- cron: '0 0 * * 0' # Runs at 00:00 UTC every Sunday | ||
push: | ||
branches: [ main ] | ||
paths-ignore: | ||
- '**' # Ignore all paths to ensure it only triggers on schedule | ||
|
||
jobs: | ||
weekly-tests: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- name: Set up Python 3.11 | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: 3.11 | ||
|
||
- name: Cache Poetry virtualenv | ||
uses: actions/cache@v3 | ||
with: | ||
path: ~/.cache/pypoetry/virtualenvs | ||
key: ${{ runner.os }}-poetry-${{ hashFiles('**/poetry.lock') }} | ||
restore-keys: | | ||
${{ runner.os }}-poetry- | ||
- name: Install Poetry | ||
uses: snok/install-poetry@v1.3.1 | ||
|
||
- name: Install dependencies | ||
run: poetry install --with dev | ||
|
||
- name: Run all tests | ||
run: poetry run pytest tests/ |