feat(block-kit): add examples of released blocks #8
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Test | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| jobs: | |
| test: | |
| name: "pytest@python3.13" | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| showcase: | |
| - "block-kit" | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v5 | |
| - name: Install Python | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: "3.13" | |
| - name: Run tests | |
| run: | | |
| cd "${{ matrix.showcase }}" | |
| pip install -r requirements.txt | |
| ruff check | |
| ruff format --diff --check | |
| mypy ./**/*.py | |
| pytest -v |