diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index d43b397..69cc680 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -8,6 +8,11 @@ jobs: with: python-version: '3.10' + - name: Install pandoc + run: | + sudo apt-get update + sudo apt-get install pandoc + - name: Run tests run: | pip install . @@ -19,11 +24,6 @@ jobs: - name: Build a binary wheel and a source tarball run: python -m build --sdist --wheel --outdir dist/ . - - name: Install pandoc - run: | - sudo apt-get update - sudo apt-get install pandoc - - name: Deploy to PyPI if: ${{ github.ref == 'refs/heads/main' }} uses: pypa/gh-action-pypi-publish@release/v1