Skip to content

Commit

Permalink
testing Marimo flow
Browse files Browse the repository at this point in the history
  • Loading branch information
tschm committed Jan 17, 2025
1 parent 9e775b9 commit 9024ec5
Showing 1 changed file with 9 additions and 8 deletions.
17 changes: 9 additions & 8 deletions .github/workflows/act.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,23 +24,24 @@ jobs:
with:
python-version: '3.12'

# Set Git user name and email for CI/CD
- name: Set Git user for CI/CD
run: |
git config --global user.email "ci@example.com"
git config --global user.name "CI User"
- name: Install and run copier
working-directory: .
shell: bash
run: |
python -m pip install --upgrade pip
pip install --no-cache-dir -r requirements.txt
mkdir -p template
# mkdir -p template
copier copy . template --data-file .github/data.yaml
cd template
- name: Prepare the repo
working-directory: template
shell: bash
run: |
# otherwise the pre-commit hooks won't "see" files
# also act needs to have the commit in place
git config --global user.email "ci@example.com"
git config --global user.name "CI User"
git init -b main
git add .
git commit -m "Initial commit"
Expand Down

0 comments on commit 9024ec5

Please sign in to comment.