From 7b9aad1225128494761d533c764d00fd4235cfee Mon Sep 17 00:00:00 2001 From: removedporn <86824510+removedporn@users.noreply.github.com> Date: Thu, 22 Sep 2022 13:16:37 +0800 Subject: [PATCH] Delete .github/workflows directory --- .github/workflows/build.yml | 27 --------------------------- 1 file changed, 27 deletions(-) delete mode 100644 .github/workflows/build.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml deleted file mode 100644 index a77ff1e..0000000 --- a/.github/workflows/build.yml +++ /dev/null @@ -1,27 +0,0 @@ -name: CI -on: - push: - pull_request: - schedule: - - cron: '0 8 * * 6' -jobs: - test: - runs-on: ubuntu-latest - strategy: - matrix: - python: ["2.7", "pypy2", "3.5", "3.6", "3.7", "3.8", "3.9", "3.10", "pypy3"] - name: "Test: Python ${{ matrix.python }}" - steps: - - uses: actions/checkout@v2 - with: - submodules: recursive - - uses: actions/setup-python@v2 - with: - python-version: ${{ matrix.python }} - - run: ./test/test - fmt: - name: Format - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - uses: psf/black@stable