check after

This commit is contained in:
Sydney Runkle
2025-07-02 13:28:35 -04:00
parent 92def14f0c
commit 141b96173e
3 changed files with 20 additions and 19 deletions
+11 -10
View File
@@ -46,16 +46,6 @@ jobs:
working-directory: ${{ inputs.working-directory }}
run: make test
- name: Install min version of deps
shell: bash
working-directory: ${{ inputs.working-directory }}
run: uv sync --all-extras --resolution lowest-direct --no-sources --force-reinstall
- name: Run tests with min version of deps
shell: bash
run: make test
working-directory: ${{ inputs.working-directory }}
- name: Ensure the tests did not create any additional files
shell: bash
working-directory: ${{ inputs.working-directory }}
@@ -68,3 +58,14 @@ jobs:
# grep will exit non-zero if the target message isn't found,
# and `set -e` above will cause the step to fail.
echo "$STATUS" | grep 'nothing to commit, working tree clean'
- name: Install min version of deps
shell: bash
working-directory: ${{ inputs.working-directory }}
run: uv sync --all-extras --resolution lowest-direct --no-sources --force-reinstall
- name: Run tests with min version of deps
shell: bash
working-directory: ${{ inputs.working-directory }}
run: make test
+8 -8
View File
@@ -42,14 +42,6 @@ jobs:
shell: bash
run: make test_parallel
- name: Install min version of deps
shell: bash
run: uv sync --all-extras --resolution lowest-direct --no-sources --force-reinstall
- name: Run tests with min version of deps
shell: bash
run: make test_parallel
- name: Ensure the tests did not create any additional files
shell: bash
run: |
@@ -61,3 +53,11 @@ jobs:
# grep will exit non-zero if the target message isn't found,
# and `set -e` above will cause the step to fail.
echo "$STATUS" | grep 'nothing to commit, working tree clean'
- name: Install min version of deps
shell: bash
run: uv sync --all-extras --resolution lowest-direct --no-sources --force-reinstall
- name: Run tests with min version of deps
shell: bash
run: make test_parallel