diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 00000000..6251002e --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,28 @@ +--- + +name: Run Tests + +on: + pull_request: + +jobs: + test: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v3 + + - name: Use Python version + uses: actions/setup-python@v3 + with: + python-version: 3.9 + + - name: Install dependencies + run: | + pip install . + pip install six mock coverage + + - name: Run Tests + run: | + coverage run -m unittest + coverage report