Skip to content

Update workflows.

Update workflows. #724

Workflow file for this run

name: Modmail Plugins Workflow
on: [push, pull_request]
jobs:
code-style:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.10'
architecture: x64
- name: Install dependencies
run: |
python -m pip install --upgrade pip pipenv
pipenv install --dev --system
- name: Black
run: |
black . --diff --check