|
|
@ -22,18 +22,17 @@ jobs:
|
|
|
|
echo "::set-output name=matrix::{\"include\":[{\"python\":\"3.6\" },{\"python\":\"3.7\"},{\"python\":\"3.8\"}]}"
|
|
|
|
echo "::set-output name=matrix::{\"include\":[{\"python\":\"3.6\" },{\"python\":\"3.7\"},{\"python\":\"3.8\"}]}"
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
build:
|
|
|
|
build:
|
|
|
|
needs: getchange
|
|
|
|
needs: [getchange]
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
strategy:
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
matrix: ${{ fromJson(needs.getchange.outputs.matrix) }}
|
|
|
|
python-version: ${{fromJson(needs.getchange.outputs.matrix)}}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
steps:
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Set up Python ${{ matrix.python-version }}
|
|
|
|
- name: Set up Python ${{ matrix.python }}
|
|
|
|
uses: actions/setup-python@v1
|
|
|
|
uses: actions/setup-python@v1
|
|
|
|
with:
|
|
|
|
with:
|
|
|
|
python-version: ${{ matrix.python-version }}
|
|
|
|
python-version: ${{ matrix.python }}
|
|
|
|
- name: Install Dependencies
|
|
|
|
- name: Install Dependencies
|
|
|
|
run: |
|
|
|
|
run: |
|
|
|
|
python -m pip install --upgrade pip
|
|
|
|
python -m pip install --upgrade pip
|
|
|
|