Overhaul RMG-RMS Python-Julia dependencies #778
Workflow file for this run
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: | |
| push: | |
| branches: | |
| - main | |
| tags: '*' | |
| pull_request: | |
| jobs: | |
| build: | |
| permissions: | |
| contents: write | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup Miniforge Python 3.9 | |
| uses: conda-incubator/setup-miniconda@v3 | |
| with: | |
| miniforge-variant: Miniforge3 | |
| miniforge-version: latest | |
| python-version: "3.9" | |
| activate-environment: rms_env | |
| auto-update-conda: true | |
| show-channel-urls: true | |
| conda-remove-defaults: "true" | |
| - name: Setup Juliaup | |
| uses: julia-actions/install-juliaup@v2 | |
| with: | |
| channel: '1.9' | |
| - uses: julia-actions/cache@v2 | |
| - name: Set some env vars | |
| run: | | |
| # https://juliapy.github.io/PythonCall.jl/stable/pythoncall/#If-you-already-have-Python-and-required-Python-packages-installed | |
| echo "JULIA_CONDAPKG_BACKEND=Current" >> $GITHUB_ENV | |
| echo "JULIA_PYTHONCALL_EXE=$CONDA_PREFIX/bin/python" >> $GITHUB_ENV | |
| - uses: julia-actions/julia-buildpkg@v1 | |
| - name: Build | |
| run: | | |
| julia -e 'using Pkg; Pkg.develop(Pkg.PackageSpec(path="../ReactionMechanismSimulator.jl/")); Pkg.build("ReactionMechanismSimulator");' | |
| - name: Build and deploy Documentation | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # For authentication with GitHub Actions token | |
| DOCUMENTER_DEBUG: true | |
| run: | | |
| julia --color=yes --project=docs docs/make.jl |