Skip to content

[pre-commit.ci] auto fixes from pre-commit.com hooks #262

[pre-commit.ci] auto fixes from pre-commit.com hooks

[pre-commit.ci] auto fixes from pre-commit.com hooks #262

Workflow file for this run

name: ci
on: [push, pull_request]
jobs:
build:
name: Running python ${{ matrix.python-version }} on ${{matrix.os}}
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10"]
os: [ubuntu-latest, macos-latest, windows-latest]
fail-fast: false
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install pip and dependencies
run: |
python -m pip install --upgrade pip
pip install pytest
- name: Install killport
run: |
pip install .
- name: Run tests
run: |
pytest .