Skip to content

Commit

Permalink
run ci
Browse files Browse the repository at this point in the history
  • Loading branch information
jameshod5 committed May 17, 2024
1 parent 24f8dc2 commit 23e9fb7
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,20 +27,20 @@ jobs:

- name: Build and run containers
run: |
pip install uv
uv venv venv
source venv/bin/activate
docker-compose \
--env-file dev/docker/.env.dev \
-f dev/docker/docker-compose.yml \
up \
--build \
-d
- name: Set up environment
run: |
git lfs fetch
git lfs pull
pip install uv
uv venv venv
source venv/bin/activate
uv pip install -r requirements.txt
- name: Run tests
run: |
Expand Down
2 changes: 1 addition & 1 deletion dev/docker/api.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ WORKDIR /code

COPY ./requirements.txt /code/requirements.txt

RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
RUN uv pip install --no-cache-dir --upgrade -r /code/requirements.txt

COPY ./src /code/src

Expand Down

0 comments on commit 23e9fb7

Please sign in to comment.