fix directory name for py adaptor #234
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: build | |
| on: | |
| - push | |
| jobs: | |
| docker: | |
| runs-on: ubuntu-latest | |
| name: docker build | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: build the keycloak docker container | |
| run: | | |
| docker build --file demo/Dockerfile.auth --tag bcgsc/pori-auth . | |
| docs: | |
| name: build docs | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| python-version: [3.11] | |
| steps: | |
| - name: checkout | |
| uses: actions/checkout@v1 | |
| with: | |
| submodules: true | |
| - name: Set up Python ${{ matrix.python-version }} | |
| uses: actions/setup-python@v2 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Install and configure Poetry | |
| uses: snok/install-poetry@v1 | |
| with: | |
| virtualenvs-create: true | |
| virtualenvs-in-project: true # Keeps virtualenv inside project directory | |
| - name: Install dependencies | |
| run: poetry install --no-interaction | |
| - run: bash docs/build_external.sh | |
| - run: poetry run properdocs build |