From c08b62c281ca5c8a4c74070c6ab8af797ab3c185 Mon Sep 17 00:00:00 2001 From: Caleb Stewart Date: Sun, 30 May 2021 00:26:50 -0400 Subject: [PATCH] Added workflow testing in master so we cant test --- .github/workflows/python.yml | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 .github/workflows/python.yml diff --git a/.github/workflows/python.yml b/.github/workflows/python.yml new file mode 100644 index 0000000..7e21e03 --- /dev/null +++ b/.github/workflows/python.yml @@ -0,0 +1,29 @@ +name: Python Checks +on: + workflow_dispatch: + +jobs: + testing: + + runs-on: ubuntu-latest + strategy: + matrix: + python-versions: [3.8,3.9] + + steps: + - uses: actions/checkout@v2 + - name: Set up Python ${{ matrix.python-version }} + uses: actions/setup-python@v2 + with: + python-version: ${{ matrix.python-version }} + - name: Install pwncat + run: | + python -m pip install --upgrade pip + pip install flake8 pytest + pip install -r requirements.txt +# - name: Lint with flake8 +# run: | +# flake8 + - name: Test with pytest + run: | + pytest