fix: narrow ast_nodes type in MarkdownStructureChunker to satisfy mypy #21
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: Docker Build | |
| on: | |
| push: | |
| branches: [ master ] | |
| pull_request: | |
| branches: [ master ] | |
| jobs: | |
| docker-build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Copy env file | |
| run: cp backend/.env.example backend/.env | |
| - name: Build backend image | |
| run: docker build -f backend/Dockerfile . | |
| - name: Build frontend image | |
| run: docker build -f frontend/Dockerfile . |