clarified docs on fine-tuning in the context of hippynn restart example #2
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Package Build | |
| on: | |
| push: | |
| branches: | |
| - main | |
| - development | |
| pull_request: | |
| branches: | |
| - main | |
| - development | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v3 | |
| - name: Set up Python | |
| uses: actions/setup-python@v4 | |
| with: | |
| python-version: '3.12' | |
| - name: Build source and wheel distributions | |
| run: | | |
| python -m pip install --upgrade pip | |
| pip install build | |
| python -m build | |
| - name: Install built wheel | |
| run: | | |
| pip install dist/*.whl | |
| - name: Import installed package outside checkout | |
| run: | | |
| cd /tmp | |
| python -c "import alframework; import alframework.tools.tools; import alframework.builders.builders; import alframework.qm_interfaces.orca5_interface; import alframework.samplers.ASE_ensemble_constructor" |