Skip to content

Commit

Permalink
Updated GitHub actions
Browse files Browse the repository at this point in the history
  • Loading branch information
GitRon committed Jul 16, 2024
1 parent 32fe98f commit 832547f
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,9 +62,9 @@ jobs:
TOXENV: django${{ matrix.django-version }}
run: tox
- name: Upload coverage data
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: coverage-data
name: coverage-data-${{ matrix.python-version }}-${{ matrix.django-version }}
path: '.coverage*'

coverage:
Expand All @@ -82,9 +82,10 @@ jobs:
run: python -m pip install --upgrade coverage[toml]

- name: Download data
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: coverage-data
pattern: coverage-data*
merge-multiple: true

- name: Combine coverage and fail if it's <100.0%
run: |
Expand Down
1 change: 1 addition & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
* Use ORM to reset `django_migrations` table
* Dropped Python 3.8 support
* Added multiple ruff linters
* Updated GitHub actions

* *2.1.0* (2024-07-09)
* Discover apps in nested directories
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ dev = [
'mistune<2.0.0',
'flit~=3.9',
'keyring~=25.2',
'ambient-package-update~=24.7.3',
'ambient-package-update~=24.7.6',
'unittest-parametrize~=1.3',
]

Expand Down

0 comments on commit 832547f

Please sign in to comment.