Skip to content

Initial tests for mentions listener and minor corrections #36

Initial tests for mentions listener and minor corrections

Initial tests for mentions listener and minor corrections #36

Workflow file for this run

name: Tests
on: [pull_request, workflow_dispatch]
jobs:
tests:
name: Tests
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 Tests
run: make test