From 771a764d4b0aa36f0ff2fd9c18777e968b89fd63 Mon Sep 17 00:00:00 2001 From: Lisphilar <7270139+lisphilar@users.noreply.github.com> Date: Sun, 25 Sep 2022 07:56:21 +0900 Subject: [PATCH] revert updates regarding #1199 --- .github/workflows/python-dev.yml | 46 -------------------------------- 1 file changed, 46 deletions(-) delete mode 100644 .github/workflows/python-dev.yml diff --git a/.github/workflows/python-dev.yml b/.github/workflows/python-dev.yml deleted file mode 100644 index 929f7813d..000000000 --- a/.github/workflows/python-dev.yml +++ /dev/null @@ -1,46 +0,0 @@ -name: Trial with dev Python - -on: - push: - paths: - - ".github/workflows/**" - - "./pyproject.toml" - branches: - - master - workflow_dispatch: - schedule: - - cron: "0 0 * * 0" - -jobs: - cancel: - name: cancel previous runs - runs-on: ubuntu-latest - - steps: - - uses: styfle/cancel-workflow-action@0.10.0 - with: - all_but_latest: true - access_token: ${{ github.token }} - - pip-test: - name: test with pip - runs-on: ubuntu-latest - strategy: - matrix: - # Control and target - python-version: ["3.10", "3.11-dev"] - - steps: - - name: Checkout - uses: actions/checkout@v3 - - - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v4 - with: - python-version: ${{ matrix.python-version }} - - - name: pip install - # we can support the dev version (after testing with test.yml) if passed without errors - run: | - pip install pip --upgrade - pip install .