Skip to content

Commit

Permalink
🚜 Move our requirements into the project
Browse files Browse the repository at this point in the history
  • Loading branch information
jefftriplett committed Sep 7, 2024
1 parent 146cc80 commit 5e8bf5f
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,6 @@ jobs:
run: |
python -m pip install --upgrade pip uv
- name: Freeze our requirements
run: |
uv pip compile ./src/github.com/${{ github.repository }}-git/requirements.in \
--output-file ./src/github.com/${{ github.repository }}-git/requirements.txt
- name: Create a project based on our settings
run: |
uv run --with=django \
Expand All @@ -43,6 +38,12 @@ jobs:
--template=./src/github.com/${{ github.repository }}-git/ \
test_project
- name: Freeze our requirements
run: |
cd test_project
uv pip compile requirements.in \
--output-file requirements.txt
- name: Docker - Build image from starter project
run: |
cd test_project
Expand Down

0 comments on commit 5e8bf5f

Please sign in to comment.