diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 501a80adf..ab700c0dc 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -18,32 +18,25 @@ jobs: - name: Checkout uses: actions/checkout@v2 + - + name: Install pipenv + run: pipx install pipenv - name: Set up Python uses: actions/setup-python@v2 with: python-version: 3.9 - - - name: Get pip cache dir - id: pip-cache - run: | - echo "::set-output name=dir::$(pip cache dir)" - - - name: Persistent Github pip cache - uses: actions/cache@v2 - with: - path: ${{ steps.pip-cache.outputs.dir }} - key: ${{ runner.os }}-pip3.8} + cache: "pipenv" + cache-dependency-path: 'Pipfile.lock' - name: Install dependencies run: | - pip install --upgrade pipenv - pipenv install --system --dev --ignore-pipfile + pipenv sync --dev - name: Make documentation run: | cd docs/ - make html + pipenv run make html - name: Upload artifact uses: actions/upload-artifact@v2 @@ -57,32 +50,25 @@ jobs: - name: Checkout uses: actions/checkout@v2 + - + name: Install pipenv + run: pipx install pipenv - name: Set up Python uses: actions/setup-python@v2 with: python-version: 3.9 - - - name: Get pip cache dir - id: pip-cache - run: | - echo "::set-output name=dir::$(pip cache dir)" - - - name: Persistent Github pip cache - uses: actions/cache@v2 - with: - path: ${{ steps.pip-cache.outputs.dir }} - key: ${{ runner.os }}-pip${{ matrix.python-version }} + cache: "pipenv" + cache-dependency-path: 'Pipfile.lock' - name: Install dependencies run: | - pip install --upgrade pipenv - pipenv install --system --dev --ignore-pipfile + pipenv sync --dev - name: Codestyle run: | cd src/ - pycodestyle --max-line-length=88 --ignore=E121,E123,E126,E226,E24,E704,W503,W504,E203 + pipenv run pycodestyle --max-line-length=88 --ignore=E121,E123,E126,E226,E24,E704,W503,W504,E203 codeformatting: runs-on: ubuntu-20.04 steps: @@ -106,34 +92,30 @@ jobs: - name: Checkout uses: actions/checkout@v2 + - + name: Install pipenv + run: pipx install pipenv - name: Set up Python uses: actions/setup-python@v2 with: python-version: "${{ matrix.python-version }}" + cache: "pipenv" + cache-dependency-path: 'Pipfile.lock' - - name: Get pip cache dir - id: pip-cache - run: | - echo "::set-output name=dir::$(pip cache dir)" - - - name: Persistent Github pip cache - uses: actions/cache@v2 - with: - path: ${{ steps.pip-cache.outputs.dir }} - key: ${{ runner.os }}-pip${{ matrix.python-version }} - - - name: Install dependencies + name: Install system dependencies run: | sudo apt-get update -qq sudo apt-get install -qq --no-install-recommends unpaper tesseract-ocr imagemagick ghostscript optipng - pip install --upgrade pipenv - pipenv install --system --dev --ignore-pipfile + - + name: Install Python dependencies + run: | + pipenv sync --dev - name: Tests run: | cd src/ - pytest + pipenv run pytest - name: Publish coverage results if: matrix.python-version == '3.9' @@ -142,7 +124,7 @@ jobs: # https://github.com/coveralls-clients/coveralls-python/issues/251 run: | cd src/ - coveralls --service=github + pipenv run coveralls --service=github # build and push image to docker hub. build-docker-image: @@ -325,4 +307,4 @@ jobs: upload_url: ${{ steps.create_release.outputs.upload_url }} # This pulls from the CREATE RELEASE step above, referencing it's ID to get its outputs object, which include a `upload_url`. See this blog post for more info: https://jasonet.co/posts/new-features-of-github-actions/#passing-data-to-future-steps asset_path: ./paperless-ngx.tar.xz asset_name: paperless-ngx-${{ steps.get_version.outputs.version }}.tar.xz - asset_content_type: application/x-xz \ No newline at end of file + asset_content_type: application/x-xz