1234567891011121314151617181920212223242526272829303132 |
- 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
|