Pin qgraph, bootnet, and other network_psych deps in renv.lock #309
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
| on: | |
| push: | |
| branches: main | |
| workflow_dispatch: | |
| name: Render and Publish | |
| jobs: | |
| build-deploy: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out repository | |
| uses: actions/checkout@v3 | |
| - name: Set up Quarto | |
| uses: quarto-dev/quarto-actions/setup@v2 | |
| - name: Install system dependencies | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install r-base-dev libcurl4-openssl-dev libudunits2-dev libgdal-dev | |
| - name: Set up R | |
| uses: r-lib/actions/setup-r@v2 | |
| with: | |
| r-version: '4.4.0' | |
| - name: Set up renv | |
| uses: r-lib/actions/setup-renv@v2 | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: '3.11' | |
| - name: Install Python dependencies | |
| run: | | |
| pip install --upgrade pip setuptools | |
| pip install "git+https://github.com/itemresponsewarehouse/Python-pkg.git" | |
| pip install mirt girth scipy matplotlib pandas jupyter | |
| - name: Render and publish to GitHub Pages | |
| uses: quarto-dev/quarto-actions/publish@v2 | |
| with: | |
| target: gh-pages | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| REDIVIS_API_TOKEN: ${{ secrets.REDIVIS_API_TOKEN }} |