Skip to content

Commit

Permalink
Delete action to clear bad ref in cache
Browse files Browse the repository at this point in the history
  • Loading branch information
JamesParrott committed Sep 17, 2024
1 parent 6720679 commit 6b62dc6
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 35 deletions.
31 changes: 0 additions & 31 deletions .github/actions/test/action.yml

This file was deleted.

38 changes: 34 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,23 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Run tests
uses: ./.github/actions/test

- name: Doctests
run: python shapefile.py

- name: Install test dependencies.
run: |
python -m pip install --upgrade pip
pip install -r requirements.test.txt
- name: Pytest
run: |
pytest
- name: Show versions for logs.
run: |
python --version
python -m pytest --version
test_on_MacOS_and_Windows:
Expand Down Expand Up @@ -71,5 +86,20 @@ jobs:
- uses: actions/setup-python@v5
with:
python-version: ${{ inputs.python_version }}
- name: Run tests
uses: ./.github/actions/test

- name: Doctests
run: python shapefile.py

- name: Install test dependencies.
run: |
python -m pip install --upgrade pip
pip install -r requirements.test.txt
- name: Pytest
run: |
pytest
- name: Show versions for logs.
run: |
python --version
python -m pytest --version

0 comments on commit 6b62dc6

Please sign in to comment.