2020-05-24 02:50:05 +00:00
|
|
|
name: Nightly
|
|
|
|
|
|
|
|
on:
|
|
|
|
schedule:
|
|
|
|
# Run Nightly Tests At 3AM (The Hour Of The Wolf) Every Day
|
|
|
|
- cron: '0 3 * * *'
|
|
|
|
|
|
|
|
jobs:
|
2023-12-12 21:08:25 +00:00
|
|
|
tests:
|
2020-05-24 02:50:05 +00:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
strategy:
|
|
|
|
matrix:
|
2023-03-29 12:21:57 +00:00
|
|
|
python-version: [3.x]
|
2020-05-24 02:50:05 +00:00
|
|
|
|
|
|
|
steps:
|
2023-12-12 21:08:25 +00:00
|
|
|
- uses: actions/checkout@v4
|
2020-05-24 02:50:05 +00:00
|
|
|
- name: Set up Python ${{ matrix.python-version }}
|
2023-12-12 21:08:25 +00:00
|
|
|
uses: actions/setup-python@v5
|
2020-05-24 02:50:05 +00:00
|
|
|
with:
|
|
|
|
python-version: ${{ matrix.python-version }}
|
|
|
|
- name: Install Dependencies
|
|
|
|
run: |
|
|
|
|
python -m pip install --upgrade pip
|
|
|
|
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
|
|
|
|
- name: Sherlock Site Coverage Tests
|
|
|
|
run: |
|
|
|
|
cd sherlock && python -m unittest tests.all.SherlockSiteCoverageTests --verbose
|