Skip to content

Update github actions to upload to pypi #2

Update github actions to upload to pypi

Update github actions to upload to pypi #2

Workflow file for this run

name: Lint with Black
on:
push:
paths:
- src/**
- tests/**
branches:
- main
pull_request:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: psf/black@stable
with:
options: "--check --verbose --exclude docs"