Skip to content

feat: easymotion-s2 mode (#11) #12

feat: easymotion-s2 mode (#11)

feat: easymotion-s2 mode (#11) #12

Workflow file for this run

name: Tests
on:
pull_request:
branches:
- master
push:
branches:
- master
jobs:
test:
name: Test Python ${{ matrix.python-version }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
if: github.head_ref != 'release-please--branches--master'
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest]
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
cache-dependency-path: 'requirements-dev.txt'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements-dev.txt
- name: Run tests
run: |
pytest test_easymotion.py -v --cache-clear
- name: Test summary
if: always()
run: |
echo "Tests completed for Python ${{ matrix.python-version }} on ${{ matrix.os }}"