diff --git a/.github/workflows/test-on-push-and-pr.yml b/.github/workflows/test-on-push-and-pr.yml index fe17cda..6185f8e 100644 --- a/.github/workflows/test-on-push-and-pr.yml +++ b/.github/workflows/test-on-push-and-pr.yml @@ -9,6 +9,9 @@ on: jobs: build: runs-on: ubuntu-latest + strategy: + matrix: + python-version: [ '3.7', '3.8', '3.9', '3.10' ] steps: - uses: actions/checkout@v2 @@ -17,6 +20,7 @@ jobs: - name: Set up python uses: actions/setup-python@v2 with: - python-version: '3.8' + python-version: ${{ matrix.python-version }} + - name: Run 'pr' target run: make pr diff --git a/README.md b/README.md index b8d79d5..4656993 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,8 @@ You can include this package in your preferred base image to make that base imag ## Requirements The Python Runtime Interface Client package currently supports Python versions: - - 3.7.x up to and including 3.9.x + + - 3.7.x up to and including 3.10.x ## Usage @@ -175,4 +176,5 @@ If you discover a potential security issue in this project we ask that you notif ## License -This project is licensed under the Apache-2.0 License. \ No newline at end of file +This project is licensed under the Apache-2.0 License. + diff --git a/tox.ini b/tox.ini new file mode 100644 index 0000000..41ff1da --- /dev/null +++ b/tox.ini @@ -0,0 +1,6 @@ +[tox] +envlist = python3.7,python3.8,python3.9,python3.10 + +[testenv] +commands = + make pr