Skip to content

Update get_weboutputs.py to cope with sheet names with spaces #181

Update get_weboutputs.py to cope with sheet names with spaces

Update get_weboutputs.py to cope with sheet names with spaces #181

Workflow file for this run

on: push
jobs:
qa:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: 3.9
- uses: pre-commit/[email protected]
testing:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: 3.9
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install -r requirements.txt
python -m pip install -r requirements-dev.txt
- name: Test with pytest
run: python -m pytest
docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Build docs
uses: ammaraskar/sphinx-action@master
with:
docs-folder: "docs/"
pre-build-command: |
python -m pip install --upgrade pip
pip install -r docs/requirements.txt
publish:
needs: qa
name: Build and push Docker image for get_weboutputs.py
if: github.ref == 'refs/heads/main'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Build and push Docker image
uses: docker/build-push-action@v1
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
repository: imperialcollegelondon/calc2050_get_weboutputs
dockerfile: scripts/Dockerfile_weboutputs
path: scripts
tags: latest