Skip to content

Initial tests for mentions listener and minor corrections #41

Initial tests for mentions listener and minor corrections

Initial tests for mentions listener and minor corrections #41

Workflow file for this run

name: Autoformatter - Yapf
on: [pull_request, workflow_dispatch]
jobs:
# Autoformatter
yapf:
name: Yapf
runs-on: [ubuntu-latest]
strategy:
matrix:
python-version: ["3.10"]
steps:
- uses: actions/checkout@v2
- name: Setting up Python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Setting up Poetry
uses: Gr1N/setup-poetry@v8
with:
poetry-preview: true
poetry-version: "1.6.1"
- name: Install Dependencies
run: |
make init
- name: Run Yapf
run: make yapf