diff options
author | nico wellpott <nico@magicbroccoli.de> | 2022-07-28 17:56:44 +0200 |
---|---|---|
committer | nico <nico@magicbroccoli.de> | 2023-01-29 21:12:15 +0100 |
commit | e5ba826310eea4ebdcc200adffaecab2e7276bf7 (patch) | |
tree | 5b4707e6e79dc46c50dee6616f97d30fdd5654a5 | |
parent | 59f7aae90630ae80e3ca337fcf9224ac1c4efe9d (diff) |
^ci: add more python versions to test matrix
-rw-r--r-- | .github/workflows/pythonapp.yml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.github/workflows/pythonapp.yml b/.github/workflows/pythonapp.yml index 25a8370..b837d22 100644 --- a/.github/workflows/pythonapp.yml +++ b/.github/workflows/pythonapp.yml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: [3.7, 3.8, 3.9] + python-version: [3.8, 3.9, '3.10', '3.11'] steps: - uses: actions/checkout@v3 @@ -20,6 +20,7 @@ jobs: uses: actions/setup-python@v4 with: python-version: ${{ matrix.python-version }} + cache: pip - name: Install dependencies run: | python -m pip install --upgrade pip |