diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index b1f5a7c..8e9fdcb 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -23,10 +23,10 @@ jobs: python-version: [3.9] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} cache: "pip" @@ -53,11 +53,11 @@ jobs: make coverage - name: Upload test results - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: pytest-results-${{ matrix.os }}-${{ matrix.python-version }} path: python_junit.xml if: ${{ always() }} - name: Upload coverage - uses: codecov/codecov-action@v3 + uses: codecov/codecov-action@v4 diff --git a/README.md b/README.md index 3ef4a42..6fc5d1c 100644 --- a/README.md +++ b/README.md @@ -3,6 +3,7 @@ Example python project [![Build Status](https://github.com/ColumbiaOSS/example-project-python/workflows/Build%20Status/badge.svg?branch=main)](https://github.com/ColumbiaOSS/example-project-python/actions?query=workflow%3A%22Build+Status%22) [![codecov](https://codecov.io/gh/ColumbiaOSS/example-project-python/branch/main/graph/badge.svg)](https://codecov.io/gh/ColumbiaOSS/example-project-python) +[![PyPI](https://img.shields.io/pypi/v/example-project-python)](https://pypi.org/project/example-project-python/) ## Details This project is a pure python project using modern tooling. It uses a `Makefile` as a command registry, with the following commands: