Skip to content

fix(wps): address native-engine review findings (9 confirmed bugs) #5

fix(wps): address native-engine review findings (9 confirmed bugs)

fix(wps): address native-engine review findings (9 confirmed bugs) #5

Workflow file for this run

name: tests
on:
push:
pull_request:
jobs:
unittest:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ['3.8', '3.10', '3.12']
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Run unit tests
run: python -m unittest discover -s tests -v
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: Install flake8
run: python -m pip install flake8
- name: Lint
run: flake8 oneshot.py tests/