diff options
author | David Robertson <davidr@element.io> | 2022-02-21 18:09:53 +0000 |
---|---|---|
committer | David Robertson <davidr@element.io> | 2022-02-21 18:09:53 +0000 |
commit | df53aec6b57d269bea08793c3a3a1db57e9b7a5a (patch) | |
tree | b7fe0c6ee71c5a9dc6a634a5d1e98f26c220e09b | |
parent | Upgrade mypy to version 0.931 (#12030) (diff) | |
download | synapse-df53aec6b57d269bea08793c3a3a1db57e9b7a5a.tar.xz |
Don't build distribution pkgs in tests.yml
-rw-r--r-- | .github/workflows/tests.yml | 17 |
1 files changed, 1 insertions, 16 deletions
diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 75ac1304bf..bbf1033bdd 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -48,24 +48,10 @@ jobs: env: PULL_REQUEST_NUMBER: ${{ github.event.number }} - lint-sdist: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - uses: actions/setup-python@v2 - with: - python-version: "3.x" - - run: pip install wheel - - run: python setup.py sdist bdist_wheel - - uses: actions/upload-artifact@v2 - with: - name: Python Distributions - path: dist/* - # Dummy step to gate other tests on without repeating the whole list linting-done: if: ${{ !cancelled() }} # Run this even if prior jobs were skipped - needs: [lint, lint-crlf, lint-newsfile, lint-sdist] + needs: [lint, lint-crlf, lint-newsfile] runs-on: ubuntu-latest steps: - run: "true" @@ -397,7 +383,6 @@ jobs: - lint - lint-crlf - lint-newsfile - - lint-sdist - trial - trial-olddeps - sytest |