From 4ea056c6f14758dbae99ca6d37367952b1402095 Mon Sep 17 00:00:00 2001 From: jmeis Date: Thu, 30 Jan 2020 22:00:24 -0600 Subject: [PATCH] feat(action): add github action --- .github/workflows/pythonapp.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/pythonapp.yml diff --git a/.github/workflows/pythonapp.yml b/.github/workflows/pythonapp.yml new file mode 100644 index 0000000..4e062f3 --- /dev/null +++ b/.github/workflows/pythonapp.yml @@ -0,0 +1,23 @@ +name: Python application + +on: [push] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + - name: Set up Python 3.8 + uses: actions/setup-python@v1 + with: + python-version: 3.8 + - name: Install dependencies + run: | + python -m pip install --upgrade pip + pip install --upgrade pipenv + pipenv install --system + - name: Run tests + run: | + python -m unittest discover -s tests -p "*.py" \ No newline at end of file