diff options
author | Paulo Henrique Silva <ph.silva@gmail.com> | 2019-11-25 16:10:33 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-11-25 16:10:33 -0300 |
commit | 5d05e7db8ee6d55e90bccad2efecfd7eb7f145fa (patch) | |
tree | 401836d61d87de1199af2f0a75311dbdf5819ad1 | |
parent | 5afe26d124d2ff1266586e4edea36877d67eb576 (diff) | |
download | gerbonara-5d05e7db8ee6d55e90bccad2efecfd7eb7f145fa.tar.gz gerbonara-5d05e7db8ee6d55e90bccad2efecfd7eb7f145fa.tar.bz2 gerbonara-5d05e7db8ee6d55e90bccad2efecfd7eb7f145fa.zip |
Update and rename pythonapp.yml to pcb-tools.yml
-rw-r--r-- | .github/workflows/pcb-tools.yml (renamed from .github/workflows/pythonapp.yml) | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/.github/workflows/pythonapp.yml b/.github/workflows/pcb-tools.yml index fe097ab..d125a46 100644 --- a/.github/workflows/pythonapp.yml +++ b/.github/workflows/pcb-tools.yml @@ -4,6 +4,10 @@ on: [push, pull_request] jobs: build: + strategy: + matrix: + python: [3.7] + runs-on: ubuntu-latest steps: @@ -11,7 +15,7 @@ jobs: - name: Set up Python 3.7 uses: actions/setup-python@v1 with: - python-version: 3.7 + python-version: ${matrix.python} - name: Install dependencies run: | python -m pip install --upgrade pip |