Skip to content

Addressed PR comments and removed hostname from 'cat' results and 'ge… #24

Addressed PR comments and removed hostname from 'cat' results and 'ge…

Addressed PR comments and removed hostname from 'cat' results and 'ge… #24

Workflow file for this run

name: Python testing
on: [push, pull_request]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
python-version: ["3.12"]
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.x'
- name: Install Dependencies
run: |
python3 -m pip install '.[testing]'
- name: Test with pytest
run: pytest