simplify redis code, less redis calls (#4456) #7710
This file contains 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: reflex-init-in-docker-test | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.id }} | |
cancel-in-progress: true | |
on: | |
push: | |
branches: ['main'] | |
paths-ignore: | |
- '**/*.md' | |
pull_request: | |
branches: ['main'] | |
paths-ignore: | |
- '**/*.md' | |
jobs: | |
# TODO we can extend to various starting points (e.g. Ubuntu with node, without node, with unzip, without unzip, etc.) | |
# Currently starting point is: Ubuntu + unzip, xz-utils, Python suite. No node. | |
reflex-install-and-init: | |
timeout-minutes: 30 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- shell: bash | |
run: | | |
# Run reflex init in a docker container | |
# cwd is repo root | |
docker build -f tests/integration/init-test/Dockerfile -t reflex-init-test tests/integration/init-test | |
docker run --rm -v $(pwd):/reflex-repo/ reflex-init-test /reflex-repo/tests/integration/init-test/in_docker_test_script.sh |