github actions run in all python versions and ci version up (#519)

This commit is contained in:
yuji suzuki
2024-05-22 21:12:55 +09:00
committed by GitHub
parent 6bd9aab925
commit c150c7671f

View File

@@ -14,12 +14,17 @@ jobs:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.8
uses: actions/setup-python@v2
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: "3.8"
python-version: ${{ matrix.python-version }}
- name: Install system dependencies
run: |
sudo apt-get update