From 9e23997e1edbd99fe2dfc17cac074bc63db5461d Mon Sep 17 00:00:00 2001 From: Matthew Avaylon Date: Wed, 21 Aug 2024 09:31:36 -0700 Subject: [PATCH] Delete .github/workflows/gallery.yaml --- .github/workflows/gallery.yaml | 55 ---------------------------------- 1 file changed, 55 deletions(-) delete mode 100644 .github/workflows/gallery.yaml diff --git a/.github/workflows/gallery.yaml b/.github/workflows/gallery.yaml deleted file mode 100644 index 812d9cb2..00000000 --- a/.github/workflows/gallery.yaml +++ /dev/null @@ -1,55 +0,0 @@ -name: Run all tests -on: - schedule: - - cron: '0 5 * * *' # once per day at midnight ET - push: - tags: # run only on new tags that follow semver - - '/^[0-9]+(\.[0-9]+)?(\.[0-9]+)?$/' - workflow_dispatch: - -jobs: - run-all-gallery-tests: - name: ${{ matrix.name }} - runs-on: ${{ matrix.os }} - defaults: - run: - shell: bash - strategy: - fail-fast: false - matrix: - include: - - { name: linux-gallery-python3.8-minimum , test-tox-env: gallery-py38-minimum , python-ver: "3.8" , os: ubuntu-latest } - - { name: linux-gallery-python3.12-upgraded , test-tox-env: gallery-py312-upgraded , python-ver: "3.12", os: ubuntu-latest } - - { name: linux-gallery-python3.12-prerelease , test-tox-env: gallery-py312-prerelease, python-ver: "3.12", os: ubuntu-latest } - # - { name: windows-gallery-python3.8-minimum , test-tox-env: gallery-py38-minimum , python-ver: "3.8" , os: windows-latest } - # - { name: windows-gallery-python3.12-upgraded , test-tox-env: gallery-py312-upgraded , python-ver: "3.12", os: windows-latest } - # - { name: windows-gallery-python3.12-prerelease, test-tox-env: gallery-py312-prerelease, python-ver: "3.12", os: windows-latest } - # - { name: macos-gallery-python3.8-minimum , test-tox-env: gallery-py38-minimum , python-ver: "3.8" , os: macos-latest } - # - { name: macos-gallery-python3.12-upgraded , test-tox-env: gallery-py312-upgraded , python-ver: "3.12", os: macos-latest } - # - { name: macos-gallery-python3.12-prerelease , test-tox-env: gallery-py312-prerelease, python-ver: "3.12", os: macos-latest } - steps: - - name: Cancel non-latest runs - uses: styfle/cancel-workflow-action@0.11.0 - with: - all_but_latest: true - access_token: ${{ github.token }} - - - uses: actions/checkout@v4 - with: - submodules: 'recursive' - fetch-depth: 0 # tags are required for versioneer to determine the version - - - name: Set up Python - uses: actions/setup-python@v5 - with: - python-version: ${{ matrix.python-ver }} - - - name: Install build dependencies - run: | - python -m pip install --upgrade pip - python -m pip install tox - python -m pip list - - - name: Run tox tests - run: | - tox -e ${{ matrix.test-tox-env }}