diff options
author | Paulo Henrique Silva <ph.silva@gmail.com> | 2019-11-25 16:16:35 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-11-25 16:16:35 -0300 |
commit | 3602ce4d684b7ddfd2f8c825c72414cdbbd20775 (patch) | |
tree | 86f7141c64e9489920b4e96c0118026c7ecfca64 /.github/workflows | |
parent | 5d05e7db8ee6d55e90bccad2efecfd7eb7f145fa (diff) | |
download | gerbonara-3602ce4d684b7ddfd2f8c825c72414cdbbd20775.tar.gz gerbonara-3602ce4d684b7ddfd2f8c825c72414cdbbd20775.tar.bz2 gerbonara-3602ce4d684b7ddfd2f8c825c72414cdbbd20775.zip |
Update pcb-tools.yml
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/pcb-tools.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/pcb-tools.yml b/.github/workflows/pcb-tools.yml index d125a46..8f52f00 100644 --- a/.github/workflows/pcb-tools.yml +++ b/.github/workflows/pcb-tools.yml @@ -6,7 +6,7 @@ jobs: build: strategy: matrix: - python: [3.7] + python-version: [2.7, 3.4, 3.5, 3.6, 3.7, 3.8] runs-on: ubuntu-latest @@ -15,7 +15,7 @@ jobs: - name: Set up Python 3.7 uses: actions/setup-python@v1 with: - python-version: ${matrix.python} + python-version: ${{ matrix.python-version }} - name: Install dependencies run: | python -m pip install --upgrade pip |