Skip to content

Commit

Permalink
copy iohub gh actions; remove tox
Browse files Browse the repository at this point in the history
  • Loading branch information
talonchandler committed Feb 22, 2025
1 parent 7886678 commit 1447be2
Show file tree
Hide file tree
Showing 4 changed files with 31 additions and 168 deletions.
47 changes: 0 additions & 47 deletions .github/workflows/pytests.yml

This file was deleted.

31 changes: 31 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: test

on: [push]

jobs:
test:
name: ${{ matrix.platform }} py${{ matrix.python-version }}
runs-on: ${{ matrix.platform }}
strategy:
max-parallel: 2
matrix:
platform: [ubuntu-latest, windows-latest, macos-latest]
python-version: ["3.10", "3.11"]

steps:
- name: Checkout repo
uses: actions/checkout@v3

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}

- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install ".[dev]"
- name: Test with pytest
run: |
pytest -v --cov=./ --cov-report=xml
88 changes: 0 additions & 88 deletions .github/workflows/test_and_deploy.yml

This file was deleted.

33 changes: 0 additions & 33 deletions tox.ini

This file was deleted.

0 comments on commit 1447be2

Please sign in to comment.