From 6cae5a0314dffbf8e7c4fdaf6851c9059262627f Mon Sep 17 00:00:00 2001 From: Brett Langdon Date: Sat, 1 Feb 2020 19:57:10 -0500 Subject: [PATCH] Remove GitHub actions hey just keep failing for random reasons even when the commands seem to pass successfully --- .github/workflows/test.yml | 24 ------------------------ 1 file changed, 24 deletions(-) delete mode 100644 .github/workflows/test.yml diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml deleted file mode 100644 index 3727a87..0000000 --- a/.github/workflows/test.yml +++ /dev/null @@ -1,24 +0,0 @@ -name: Test package - -on: [push] - -jobs: - build: - - runs-on: ubuntu-latest - strategy: - matrix: - python-version: [2.7, 3.5, 3.6, 3.7, 3.8] - - steps: - - uses: actions/checkout@v2 - - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v1 - with: - python-version: ${{ matrix.python-version }} - - name: Build - run: | - python setup.py build_ext --force - python setup.py develop - - name: Black Check - uses: jpetrucciani/black-check@19.10b0