add dotenv to dependencies, just cleaner than json config #18
Workflow file for this run
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
on: [push, pull_request] | |
permissions: | |
contents: read | |
pages: write | |
id-token: write | |
actions: read | |
jobs: | |
test-python: | |
# "cannot specify version when calling local workflows" | |
uses: ./.github/workflows/test-python.yml | |
# Give up on directly reusing workflows die to lack of repo permissions | |
build-docs: | |
uses: ./.github/workflows/build-docs.yml | |
deploy-docs: | |
uses: ./.github/workflows/deploy-docs.yml | |
with: | |
pages_artifact_name: ${{ needs.build-docs.outputs.pages_artifact_name }} | |
if: ${{ github.ref_name == 'main' || github.head_ref == 'main'}} | |
needs: [test-python, build-docs] |