|
|
@ -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]" |
|
|
|