Skip to content

Initial v1.0 release #2

Initial v1.0 release

Initial v1.0 release #2

Workflow file for this run

name: ci
on:
push:
pull_request:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python: ["3.10", "3.12"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
- name: Syntax check
run: python -m py_compile remote_paste.py
- name: Run detection tests
run: |
pip install pytest
pytest -q