Update dependabot.yml to add julia ecosystem support (#231) #81
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: Documentation | |
| on: | |
| pull_request: | |
| branches: [main] | |
| push: | |
| branches: [main] | |
| tags: ["*"] | |
| concurrency: | |
| # cancels when a PR gets updated | |
| group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}-${{ github.actor }} | |
| cancel-in-progress: true | |
| jobs: | |
| docs: | |
| name: Build | |
| timeout-minutes: 30 | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: julia-actions/setup-julia@v2 | |
| with: | |
| version: "1" | |
| - uses: actions/cache@v5 | |
| env: | |
| cache-name: cache-artifacts | |
| with: | |
| path: ~/.julia/artifacts | |
| key: ${{ runner.os }}-test-${{ env.cache-name }}-${{ hashFiles('**/Project.toml') }} | |
| restore-keys: | | |
| ${{ runner.os }}-test-${{ env.cache-name }}- | |
| ${{ runner.os }}-test- | |
| ${{ runner.os }}- | |
| - name: Setup data directories | |
| run: | | |
| wget "https://www.star.bristol.ac.uk/fergus/spectral-fitting/ci-data/1E-1048-5937.tar" | |
| mkdir ex-datadir | |
| tar -xf 1E-1048-5937.tar -C ex-datadir/ | |
| - name: Add AstroRegistry and General registries | |
| shell: julia --color=yes {0} | |
| run: | | |
| import Pkg | |
| Pkg.Registry.add(url="https://github.com/astro-group-bristol/AstroRegistry/") | |
| Pkg.Registry.add(name="General") | |
| - name: Set up environment | |
| shell: julia --color=yes --project=docs {0} | |
| run: import Pkg; Pkg.instantiate() | |
| env: | |
| JULIA_PKG_PRECOMPILE_AUTO: false | |
| - name: Precompile environment | |
| shell: julia --color=yes --project=docs {0} | |
| run: import Pkg; Pkg.precompile() | |
| - name: Build and deploy documentation | |
| uses: julia-actions/julia-docdeploy@v1 | |
| env: | |
| JULIA_NUM_THREADS: "auto" | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |