From 89c8aeaeaa9fbffbefb81c38f1906d94ae2e2bfd Mon Sep 17 00:00:00 2001 From: John Agapiou Date: Thu, 12 Dec 2024 09:54:05 -0800 Subject: [PATCH] Remove redundant workflow (pypi_publish can be used instead). PiperOrigin-RevId: 705539339 Change-Id: I1bc6bdfd6758ea5775ae123c3521b94ecf78aa13 --- .github/workflows/sdist-test.yml | 50 -------------------------------- 1 file changed, 50 deletions(-) delete mode 100644 .github/workflows/sdist-test.yml diff --git a/.github/workflows/sdist-test.yml b/.github/workflows/sdist-test.yml deleted file mode 100644 index 5bad33e2..00000000 --- a/.github/workflows/sdist-test.yml +++ /dev/null @@ -1,50 +0,0 @@ -# A workflow to test the sdist that will be released to PyPI - -name: sdist-test - -on: - workflow_dispatch: - inputs: - runs-on: - description: 'OS to run on.' - type: string - default: 'ubuntu-latest' - python-version: - description: 'Python version to use.' - type: string - default: '3.11' - -permissions: read-all - -jobs: - sdist-test: - name: Test sdist - runs-on: ${{ inputs.runs-on }} - timeout-minutes: 90 - - steps: - - name: Checkout Concordia - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 - - - name: Build source distribution - run: python setup.py sdist - - - name: Set up Python - uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b - with: - python-version: ${{ inputs.python-version }} - - - name: Install Python dependencies - run: | - pip install --upgrade pip - pip install --upgrade setuptools - pip install pytest-xdist - - - name: Install source distribution - run: | - pip install dist/*.tar.gz - pip list - - - name: Test source distribution - run: | - pytest -n auto --pyargs concordia