Skip to content

Replaced previous testing approach to a higher dater, more reliable c… #20

Replaced previous testing approach to a higher dater, more reliable c…

Replaced previous testing approach to a higher dater, more reliable c… #20

Workflow file for this run

name: Build
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
permissions:
contents: read
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ["3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v3
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install flake8 pytest
pip install -r requirements.txt
- name: Flake 8 Syntax Errors
run: |
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
- name: Flake 8 Syntax Warnings
run: |
flake8 . --count --statistics
- name: Pytest
run: |
pytest .