diff options
author | Paulo Henrique Silva <ph.silva@gmail.com> | 2019-11-25 15:56:42 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-11-25 15:56:42 -0300 |
commit | 5afe26d124d2ff1266586e4edea36877d67eb576 (patch) | |
tree | 927e69741755b2ead9a31145db23af8e4dcf9531 /.github/workflows | |
parent | 1efc9035aeb1a9cebb1ddcdc04bebf6388937dee (diff) | |
download | gerbonara-5afe26d124d2ff1266586e4edea36877d67eb576.tar.gz gerbonara-5afe26d124d2ff1266586e4edea36877d67eb576.tar.bz2 gerbonara-5afe26d124d2ff1266586e4edea36877d67eb576.zip |
Create pythonapp.yml
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/pythonapp.yml | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/.github/workflows/pythonapp.yml b/.github/workflows/pythonapp.yml new file mode 100644 index 0000000..fe097ab --- /dev/null +++ b/.github/workflows/pythonapp.yml @@ -0,0 +1,22 @@ +name: pcb-tools + +on: [push, pull_request] + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v1 + - name: Set up Python 3.7 + uses: actions/setup-python@v1 + with: + python-version: 3.7 + - 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 |