From a69bea29e9e5de870b7cc68682110c24115b3298 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Sun, 23 Feb 2020 14:29:07 +0900 Subject: [PATCH] Revert "Do test with Windows on GitHub Actions" This reverts commit 51cca58094d743db3c5e9a2625467adfb6823e82. --- .github/workflows/main.yml | 21 --------------------- 1 file changed, 21 deletions(-) delete mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml deleted file mode 100644 index 2b44dbb4f..000000000 --- a/.github/workflows/main.yml +++ /dev/null @@ -1,21 +0,0 @@ -name: CI on Windows - -on: [push] - -jobs: - build: - runs-on: windows-latest - strategy: - matrix: - architecture: [x86, x64] - - steps: - - uses: actions/checkout@v2 - - name: Set up Python - uses: actions/setup-python@v1 - with: - architecture: ${{ matrix.architecture }} - - name: Install dependencies - run: pip install -U tox - - name: Run Tox - run: tox -e py