Skip to content

Add support for chat.postEphemeral #50

Add support for chat.postEphemeral

Add support for chat.postEphemeral #50

Workflow file for this run

name: PyLint
on:
push:
branches:
- main
pull_request:
workflow_call:
jobs:
pylint:
name: PyLint
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version:
- "3.10"
- "3.11"
- "3.12"
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install pylint
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install pylint
- name: Analysing the code with pylint
run: |
pylint slack_server_mock