Skip to content

Commit

Permalink
v24.7.6
Browse files Browse the repository at this point in the history
  • Loading branch information
GitRon committed Jul 16, 2024
1 parent 05eb466 commit 51df687
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 7 deletions.
3 changes: 3 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Changelog

**24.7.6 (2024-07-16)**
* Bugfix with GitHub actions

**24.7.5 (2024-07-16)**
* Bugfix with GitHub action runner variable

Expand Down
2 changes: 1 addition & 1 deletion ambient_package_update/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""Ambient package update tool for clean and swift maintenance"""

__version__ = "24.7.5"
__version__ = "24.7.6"
13 changes: 7 additions & 6 deletions ambient_package_update/templates/.github/workflows/ci.yml.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
run: python manage.py makemigrations --check --dry-run{% endif %}

tests:
name: Python ${% raw %}{{ matrix.python-version }}{% endraw %}, django ${% raw %}{{ matrix.django-version }}{% endraw %}
name: Python {% raw %}${{ matrix.python-version }}{% endraw %}, django {% raw %}${{ matrix.django-version }}{% endraw %}
runs-on: ubuntu-22.04
strategy:
matrix:
Expand All @@ -54,18 +54,18 @@ jobs:
- name: setup python
uses: actions/setup-python@v5
with:
python-version: ${% raw %}{{ matrix.python-version }}{% endraw %}
python-version: {% raw %}${{ matrix.python-version }}{% endraw %}
- name: Install tox
run: pip install tox
- name: Run Tests
env:
TOXENV: django${% raw %}{{ matrix.django-version }}{% endraw %}
TOXENV: django{% raw %}${{ matrix.django-version }}{% endraw %}
run: tox
- name: Upload coverage data
uses: actions/upload-artifact@v4
with:
name: coverage-data
path: '.coverage{% raw %}${{ matrix.python-version }}-${{ matrix.django-version }}{% endraw %}*'
name: coverage-data-{% raw %}${{ matrix.python-version }}-${{ matrix.django-version }}{% endraw %}
path: '.coverage*'

coverage:
name: Coverage
Expand All @@ -84,7 +84,8 @@ jobs:
- name: Download data
uses: actions/download-artifact@v4
with:
name: coverage-data
pattern: coverage-data*
merge-multiple: true

- name: Combine coverage and fail if it's <{{ min_coverage }}%
run: |
Expand Down

0 comments on commit 51df687

Please sign in to comment.