Skip to content

Commit

Permalink
for ci keep docker container alive between steps
Browse files Browse the repository at this point in the history
  • Loading branch information
thecharlieblake committed Nov 6, 2024
1 parent c55f2dc commit 8419461
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ jobs:
run: docker build -t unit-scaling-dev:latest .

- name: Local unit_scaling install
run: docker run --rm -v $(pwd):/home/developer/unit-scaling unit-scaling-dev:latest pip install --user -e .
run: docker run -v $(pwd):/home/developer/unit-scaling unit-scaling-dev:latest pip install --user -e .

- name: Run CI
run: docker run --rm -v $(pwd):/home/developer/unit-scaling unit-scaling-dev:latest ./dev ci
run: docker run -v $(pwd):/home/developer/unit-scaling unit-scaling-dev:latest ./dev ci

- name: Publish documentation
if: ${{github.ref == 'refs/heads/main'}}
Expand Down

0 comments on commit 8419461

Please sign in to comment.