Skip to content

fix: Include py.typed module when building package #11

fix: Include py.typed module when building package

fix: Include py.typed module when building package #11

Workflow file for this run

name: Python Test on Pull Requests
on:
pull_request:
branches:
- master
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.10'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pytest
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Run tests
run: pytest