From: Daniele Varrazzo Date: Fri, 3 Sep 2021 16:48:31 +0000 (+0200) Subject: Add vim folds to package workflow X-Git-Tag: 3.0.beta1-wheel~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3de0ba542a244efa8d0cba86cc504ccad4f654f7;p=thirdparty%2Fpsycopg.git Add vim folds to package workflow --- diff --git a/.github/workflows/packages.yml b/.github/workflows/packages.yml index 13b89e4ac..8b1ea5632 100644 --- a/.github/workflows/packages.yml +++ b/.github/workflows/packages.yml @@ -4,7 +4,8 @@ on: workflow_dispatch: jobs: - sdist: + + sdist: # {{{ name: Build sdist packages runs-on: ubuntu-20.04 @@ -71,8 +72,10 @@ jobs: --health-timeout 5s --health-retries 5 + # }}} + - linux: + linux: # {{{ name: Build Linux packages runs-on: ubuntu-20.04 @@ -127,8 +130,10 @@ jobs: --health-timeout 5s --health-retries 5 + # }}} + - macos: + macos: # {{{ name: Build MacOS packages runs-on: macos-10.15 @@ -162,8 +167,10 @@ jobs: with: path: ./wheelhouse/*.whl + # }}} - windows: + + windows: # {{{ name: Build Windows packages runs-on: windows-2019 @@ -205,3 +212,5 @@ jobs: - uses: actions/upload-artifact@v2 with: path: ./wheelhouse/*.whl + + # }}}