diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index 553b6a4..25581c6 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/python-package.yml @@ -32,8 +32,6 @@ jobs: run: | python -m pip install --upgrade pip python -m pip install hatch - hatch dep show requirements - pip freeze - name: Test with pytest run: hatch run test @@ -45,7 +43,10 @@ jobs: run: hatch run types:check - name: Build Installer - run: hatch run pyinstaller:build AntaresWebInstaller-${{ matrix.os }} + run: | + hatch run pyinstaller:build AntaresWebInstaller-${{ matrix.os }} + hatch dep show requirements + pip freeze - name: Upload Windows binaries if: matrix.python-version == '3.8' && matrix.os == 'windows-latest'