Skip to content

fix: Handle program kill errors correctly #6

fix: Handle program kill errors correctly

fix: Handle program kill errors correctly #6

Workflow file for this run

name: Test paste.py 🐍
on:
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Create config mock
run: mkdir ~/.ssh && touch ~/.ssh/config
- name: Install dependencies
run: pip3 install . && pip3 install pytest
- name: Run Test
run: pytest