Skip to content

ci(CI): test Python 3.12 and 3.13 #20

ci(CI): test Python 3.12 and 3.13

ci(CI): test Python 3.12 and 3.13 #20

Workflow file for this run

name: CI
on:
- push
- pull_request
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@v3
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y inotify-tools
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Run tests
run: |
tests/test.sh