workflows: ci: run on Python 3.8 ~ 3.11

pull/2002/head
Emilio López 1 year ago
parent cbe6716afd
commit fa5963239e
  1. 5
      .github/workflows/ci.yml

@ -26,6 +26,7 @@ jobs:
fail-fast: false fail-fast: false
matrix: matrix:
os: ["ubuntu-latest", "windows-2022"] os: ["ubuntu-latest", "windows-2022"]
python: ["3.8", "3.9", "3.10", "3.11"]
type: ["cli", type: ["cli",
"dapp", "dapp",
"data_dependency", "data_dependency",
@ -53,10 +54,10 @@ jobs:
type: truffle type: truffle
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v3
- name: Set up Python 3.8 - name: Set up Python ${{ matrix.python }}
uses: actions/setup-python@v3 uses: actions/setup-python@v3
with: with:
python-version: 3.8 python-version: ${{ matrix.python }}
- name: Install dependencies - name: Install dependencies
run: | run: |
pip install ".[test]" pip install ".[test]"

Loading…
Cancel
Save