Skip to content

Merge pull request #6 from slack-samples/improve-error-handling #18

Merge pull request #6 from slack-samples/improve-error-handling

Merge pull request #6 from slack-samples/improve-error-handling #18

Workflow file for this run

name: Linting validation using ruff
on:
push:
branches: [main]
pull_request:
jobs:
lint:
runs-on: ubuntu-latest
timeout-minutes: 5
strategy:
matrix:
python-version: ["3.13"]
steps:
- uses: actions/checkout@v5
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip install -U pip
pip install .
- name: Lint with ruff
run: |
ruff check