Require lockfile to be up to date in CI (#457)

* Require lockfile to be up to date in CI

* use locked instead of frozen
This commit is contained in:
Jack Gerrits 2024-09-09 09:34:06 -04:00 committed by GitHub
parent 3be2059516
commit 1135515364
2 changed files with 8 additions and 8 deletions

View File

@ -17,7 +17,7 @@ jobs:
- uses: actions/setup-python@v5
with:
python-version: '3.11'
- run: uv sync
- run: uv sync --locked
working-directory: ./python
- name: Run task
run: |
@ -33,7 +33,7 @@ jobs:
- uses: actions/setup-python@v5
with:
python-version: '3.11'
- run: uv sync
- run: uv sync --locked
working-directory: ./python
- name: Run task
run: |
@ -53,7 +53,7 @@ jobs:
- uses: actions/setup-python@v5
with:
python-version: '3.11'
- run: uv sync
- run: uv sync --locked
working-directory: ./python
- name: Run task
run: |
@ -73,7 +73,7 @@ jobs:
- uses: actions/setup-python@v5
with:
python-version: '3.11'
- run: uv sync
- run: uv sync --locked
working-directory: ./python
- name: Run task
run: |
@ -93,7 +93,7 @@ jobs:
- uses: actions/setup-python@v5
with:
python-version: '3.11'
- run: uv sync
- run: uv sync --locked
working-directory: ./python
- name: Run task
run: |
@ -113,7 +113,7 @@ jobs:
- uses: actions/setup-python@v5
with:
python-version: '3.11'
- run: uv sync
- run: uv sync --locked
working-directory: ./python
- name: Run task
run: |
@ -129,7 +129,7 @@ jobs:
- uses: actions/setup-python@v5
with:
python-version: '3.11'
- run: uv sync
- run: uv sync --locked
working-directory: ./python
- name: Run task
run: |

View File

@ -35,7 +35,7 @@ jobs:
with:
python-version: '3.11'
- run: |
uv sync
uv sync --locked
source .venv/bin/activate
poe --directory ./packages/autogen-core docs-build
working-directory: ./python