Initial tests for mentions listener and minor corrections #41
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |