This repository was archived by the owner on Dec 17, 2025. It is now read-only.
Update README to indicate repository status #140
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: Python CI | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| paths: | |
| - 'python/**/*' | |
| - '**/*.py' | |
| - '**/*.toml' | |
| - .github/workflows/ci-python.yml | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Build and Publish Docker Container | |
| uses: darthtrevino/github-container-registry-build-push@main | |
| with: | |
| github-push-secret: ${{secrets.GITHUB_TOKEN}} | |
| docker-image-name: showwhy-backend | |
| docker-image-tag: latest | |
| dockerfile-path: ./python/backend/Dockerfile | |
| build-context: ./python/backend | |
| build-only: ${{ github.ref != 'refs/heads/main' }} |