Skip to content

Tidy up action yamls #3

Tidy up action yamls

Tidy up action yamls #3

Workflow file for this run

name: DevelopmentTest
on: [push]
defaults:
run:
shell: bash
jobs:
unit_testing:
strategy:
matrix:
os: [ windows-latest, macos-12, ubuntu-24.04 ]
py: [ "3.11", "3.12" ]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/[email protected]
- name: Set up Python
uses: actions/[email protected]
with:
python-version: ${{ matrix.py }}
- name: Install Pip Dependencies from Requirements
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 }}