Skip to content

Bump pypa/gh-action-pypi-publish from 1.8.11 to 1.8.14 #218

Bump pypa/gh-action-pypi-publish from 1.8.11 to 1.8.14

Bump pypa/gh-action-pypi-publish from 1.8.11 to 1.8.14 #218

Workflow file for this run

name: Check
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
check:
name: Code Styles
runs-on: ubuntu-latest
steps:
- name: Cancel Previous Runs
uses: styfle/[email protected]
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python 3.x
uses: actions/setup-python@v5
with:
python-version: '3.x'
- name: Install dependencies
run: |
pip install -r requirements.txt
pip install black blackdoc flake8 isort
- name: Check code style
run: make check