Merge pull request #72 from fzi-forschungszentrum-informatik/Debug_SETS #131
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: Publish Github pages | |
| on: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| deploy: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - uses: actions/setup-python@v2 | |
| with: | |
| python-version: 3.9 | |
| - run: export SKLEARN_ALLOW_DEPRECATED_SKLEARN_PACKAGE_INSTALL=True | |
| - run: pip install sklearn==0.0 | |
| - run: pip install https://github.com/gkhayes/mlrose/archive/refs/heads/master.zip | |
| - run: pip install .[docs] | |
| - run: mkdocs gh-deploy --force |