RF: Return depends from getParams too #36
This file contains 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: Pages | |
on: | |
push: | |
branches: | |
- release | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/setup-python@master | |
- uses: actions/checkout@master | |
- name: Dependencies | |
run: | | |
git fetch origin gh-pages # checkout depth=1 doesn't include this branch | |
python -m pip install --upgrade pip | |
pip install furo # furo theme for sphinx | |
pip install numpy | |
pip install git+https://github.com/psychopy/psychopy-lib --prefer-binary | |
- name: Install self | |
runs: | | |
pip install -e . | |
- name: Build and Commit | |
uses: sphinx-notes/pages@v2 | |
- name: Push changes | |
uses: ad-m/github-push-action@master | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
branch: gh-pages |