From b38ce5d0e0fc41e31765ba1f401122b1efbb59c8 Mon Sep 17 00:00:00 2001 From: Pradyun Gedam Date: Fri, 4 Oct 2019 15:46:18 +0530 Subject: [PATCH] Remove GitHub Actions CI Why: This seems to be causing 500 errors for @pradyunsg on PRs. https://twitter.com/AndersKaseorg/status/1179851971433385984 --- .github/workflows/python-linters.yml | 42 ---------------------------- 1 file changed, 42 deletions(-) delete mode 100644 .github/workflows/python-linters.yml diff --git a/.github/workflows/python-linters.yml b/.github/workflows/python-linters.yml deleted file mode 100644 index 99c632166e4..00000000000 --- a/.github/workflows/python-linters.yml +++ /dev/null @@ -1,42 +0,0 @@ -name: Code quality - -on: - push: - pull_request: - schedule: - # Run every Friday at 18:02 UTC - # https://crontab.guru/#2_18_*_*_5 - - cron: 2 18 * * 5 - -jobs: - linters: - name: 🤖 - runs-on: ${{ matrix.os }} - strategy: - # max-parallel: 5 - matrix: - os: - - ubuntu-18.04 - env: - - TOXENV: docs - - TOXENV: lint - steps: - - uses: actions/checkout@master - - name: Set up Python ${{ matrix.env.PYTHON_VERSION || 3.7 }} - uses: actions/setup-python@v1 - with: - version: ${{ matrix.env.PYTHON_VERSION || 3.7 }} - - name: Pre-configure global Git settings - run: >- - tools/travis/setup.sh - - name: Update setuptools and tox dependencies - run: >- - tools/travis/install.sh - - name: 'Initialize tox envs: ${{ matrix.env.TOXENV }}' - run: >- - python -m tox --notest --skip-missing-interpreters false - env: ${{ matrix.env }} - - name: Test with tox - run: >- - python -m tox - env: ${{ matrix.env }}