Skip to content
This repository was archived by the owner on Dec 17, 2025. It is now read-only.

Update README to indicate repository status #140

Update README to indicate repository status

Update README to indicate repository status #140

Workflow file for this run

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' }}