chore: manually set environ variable in pytest demos_folder fixture s… #17
Workflow file for this run
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: sync-demo.yml | ||
| on: | ||
| pull_request: | ||
| branches: | ||
| - develop | ||
| jobs: | ||
| update-demo: | ||
| name: Update Demo | ||
| runs-on: ubuntu-latest | ||
| strategy: | ||
| matrix: | ||
| demo_name: | ||
| - "robust-python-demo" | ||
| - "robust-maturin-demo" | ||
| steps: | ||
| - name: Checkout Template | ||
| uses: actions/checkout@v4 | ||
| with: | ||
| repository: ${{ github.repository }} | ||
| path: "${{ github.workspace }}/cookiecutter-robust-python" | ||
| - name: Update Demo | ||
| uses: "${{ github.workspace }}/cookiecutter-robust-python/.github/workflows/update-demo.yml" | ||
| with: | ||
| demo_name: ${{ matrix.demo_name }} | ||