Skip to content

build(deps): bump dependabot/fetch-metadata from 2.5.0 to 3.0.0 #73

build(deps): bump dependabot/fetch-metadata from 2.5.0 to 3.0.0

build(deps): bump dependabot/fetch-metadata from 2.5.0 to 3.0.0 #73

Workflow file for this run

name: Test
on:
push:
branches:
- main
pull_request:
jobs:
test:
name: "pytest@python3.14"
runs-on: ubuntu-latest
strategy:
matrix:
showcase:
- "block-kit"
steps:
- name: Checkout code
uses: actions/checkout@v6
- name: Install Python
uses: actions/setup-python@v6
with:
python-version: "3.14"
- name: Run tests
run: |
cd "${{ matrix.showcase }}"
pip install -r requirements.txt
ruff check
ruff format --diff --check
mypy ./**/*.py
pytest -v