diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c655b7f..9330d1b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -18,13 +18,13 @@ jobs: python: ['3.10', '3.11', '3.12'] django: ['4.2'] - name: Run the test suite (Python $, Django $) + name: Run the test suite (Python ${{ matrix.python }}, Django ${{ matrix.django }}) steps: - uses: actions/checkout@v4 - uses: actions/setup-python@v5 with: - python-version: $ + python-version: ${{ matrix.python }} - name: Install dependencies run: pip install tox tox-gh-actions @@ -32,8 +32,8 @@ jobs: - name: Run tests run: tox env: - PYTHON_VERSION: $ - DJANGO: $ + PYTHON_VERSION: ${{ matrix.python }} + DJANGO: ${{ matrix.django }} - name: Publish coverage report uses: codecov/codecov-action@v3 @@ -61,4 +61,4 @@ jobs: uses: pypa/gh-action-pypi-publish@release/v1 with: user: __token__ - password: $ + password: ${{ secrets.PYPI_TOKEN }} diff --git a/.github/workflows/code_quality.yml b/.github/workflows/code_quality.yml index 6fa948e..ea7bf9b 100644 --- a/.github/workflows/code_quality.yml +++ b/.github/workflows/code_quality.yml @@ -30,4 +30,4 @@ jobs: run: pip install tox - run: tox env: - TOXENV: $ + TOXENV: ${{ matrix.toxenv }}