Skip to content

fix: py.typed module ignored when building package #9

fix: py.typed module ignored when building package

fix: py.typed module ignored when building package #9

Workflow file for this run

name: Python Linting
on:
push:
branches:
- master
paths:
- 'schema/**'
- 'pyproject.toml'
pull_request:
branches:
- master
paths:
- 'schema/**'
- 'pyproject.toml'
jobs:
lint:
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 Black
run: pip install black
- name: Run Black on schema package
run: black --check schema