Skip to content

Complete modernization and upgrading #1

Complete modernization and upgrading

Complete modernization and upgrading #1

Workflow file for this run

name: DevelopmentTest
on: [push]
jobs:
test_compatability: # not actually running tests, just testing dependencies are compatible
strategy:
matrix:
os: [ windows-latest, macos-12, ubuntu-24.04 ]
py: [ "3.11", "3.12"" ]

Check failure on line 10 in .github/workflows/test.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/test.yml

Invalid workflow file

You have an error in your yaml syntax on line 10
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 # v2
- name: Set up Python
uses: actions/setup-python@d27e3f3d7c64b4bbf8e4abfb9b63b83e846e0435 # v4.5.0
with:
python-version: ${{ matrix.py }}
- name: Install Pip Dependencies from Requirements
shell: bash
run: pip install -r requirements.txt
- name: Run Tests
run: coverage run -m pytest && coverage report -m
- name: Coveralls
if: ${{ matrix.os == 'ubuntu-24.04' }}
run: coveralls --service=github
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}