Skip to content

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

fix: py.typed module ignored when building package

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

Workflow file for this run

name: Python Linting
on:
push:
branches:
- master
paths:
- 'schema/**'
pull_request:
branches:
- master
paths:
- 'schema/**'
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