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 /.github/workflows/pcb-tools.yml | |
parent | 5afe26d124d2ff1266586e4edea36877d67eb576 (diff) | |
download | gerbonara-5d05e7db8ee6d55e90bccad2efecfd7eb7f145fa.tar.gz gerbonara-5d05e7db8ee6d55e90bccad2efecfd7eb7f145fa.tar.bz2 gerbonara-5d05e7db8ee6d55e90bccad2efecfd7eb7f145fa.zip |
Update and rename pythonapp.yml to pcb-tools.yml
Diffstat (limited to '.github/workflows/pcb-tools.yml')
-rw-r--r-- | .github/workflows/pcb-tools.yml | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/.github/workflows/pcb-tools.yml b/.github/workflows/pcb-tools.yml new file mode 100644 index 0000000..d125a46 --- /dev/null +++ b/.github/workflows/pcb-tools.yml @@ -0,0 +1,26 @@ +name: pcb-tools + +on: [push, pull_request] + +jobs: + build: + strategy: + matrix: + python: [3.7] + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v1 + - name: Set up Python 3.7 + uses: actions/setup-python@v1 + with: + python-version: ${matrix.python} + - name: Install dependencies + run: | + python -m pip install --upgrade pip + pip install -r requirements-dev.txt + - name: Test with pytest + run: | + pip install pytest + pytest |