Skip to content

ci(CI): run CI every week #24

ci(CI): run CI every week

ci(CI): run CI every week #24

Workflow file for this run

name: CI
on:
push:
pull_request:
schedule:
- cron: "33 23 * * FRI" # 23:33 UTC / 16:33 PDT / 15:33 PST
jobs:
CI:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version:
- "3.7"
- "3.8"
- "3.9"
- "3.10"
- "3.11"
- "3.12"
- "3.13"
name: Python ${{ matrix.python-version }}
steps:
- name: Checkout myself
uses: actions/checkout@v4
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y inotify-tools
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Run tests
run: |
tests/test.sh