From 2b02f28db0e9297d1c18651fb6931c2d80b29663 Mon Sep 17 00:00:00 2001 From: claude-ceo-assistant Date: Sun, 10 May 2026 14:27:33 +0000 Subject: [PATCH] chore: remove upstream CI workflows (mirror inertization per internal#233) --- .github/workflows/test.yml | 63 -------------------------------------- 1 file changed, 63 deletions(-) delete mode 100644 .github/workflows/test.yml diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml deleted file mode 100644 index 82c5e5f..0000000 --- a/.github/workflows/test.yml +++ /dev/null @@ -1,63 +0,0 @@ -name: Validate 'setup-python' -on: - push: - branches: - - master - paths-ignore: - - '**.md' - pull_request: - paths-ignore: - - '**.md' - schedule: - - cron: 0 0 * * * - -jobs: - default-version: - name: Setup default version - runs-on: ${{ matrix.os }} - strategy: - fail-fast: false - matrix: - os: [macos-latest, windows-latest, ubuntu-16.04, ubuntu-18.04] - steps: - - name: Checkout - uses: actions/checkout@v2 - - - name: setup default python - uses: ./ - - - name: Validate version - run: python --version - - - name: Run simple python code - run: python -c 'import math; print(math.factorial(5))' - - setup-versions-from-manifest: - name: Setup ${{ matrix.python }} ${{ matrix.os }} - runs-on: ${{ matrix.os }} - strategy: - fail-fast: false - matrix: - os: [macos-latest, windows-latest, ubuntu-16.04, ubuntu-18.04] - python: [3.5.4, 3.6.7, 3.7.5, 3.8.1] - steps: - - name: Checkout - uses: actions/checkout@v2 - - - name: setup-python ${{ matrix.python }} - uses: ./ - with: - python-version: ${{ matrix.python }} - - - name: Validate version - run: | - $pythonVersion = (python --version) - if ("Python ${{ matrix.python }}" -ne "$pythonVersion"){ - Write-Host "The current version is $pythonVersion; expected version is ${{ matrix.python }}" - exit 1 - } - $pythonVersion - shell: pwsh - - - name: Run simple code - run: python -c 'import math; print(math.factorial(5))'