From 4f7959f73c3b6990df93144e4f9c7869dd6b650c Mon Sep 17 00:00:00 2001 From: Brian Muller Date: Mon, 12 Apr 2021 11:49:42 -0400 Subject: [PATCH] added github workflow --- .github/workflows/ci.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..6c085eb --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,16 @@ +name: ci +on: push + +jobs: + test: + runs-on: ubuntu-latest + strategy: + matrix: + python-version: ['3.5', '3.8', '3.9', 'pypy-3.9'] + steps: + - uses: actions/checkout@v2 + - uses: actions/setup-python@v2 + with: + python-version: ${{ matrix.python-version }} + - run: pip install . && pip install -r dev-requirements.txt + - run: pytest