Skip to content

Package Update: Bump slack-bolt from 1.18.0 to 1.18.1 #200

Package Update: Bump slack-bolt from 1.18.0 to 1.18.1

Package Update: Bump slack-bolt from 1.18.0 to 1.18.1 #200

Workflow file for this run

name: CI Tests
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python latest
uses: actions/setup-python@v2
with:
python-version: "3.x"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e .
pip install -r requirements.txt
- name: Test with pytest
run: make test