Fix identation

This commit is contained in:
Mark Schmitt 2021-01-07 07:43:45 +01:00
parent 98bc51a3ec
commit 10995788d1

View File

@ -33,33 +33,33 @@ jobs:
pipenv run pytest --cov pipenv run pytest --cov
pipenv run pycodestyle pipenv run pycodestyle
pipenv run coveralls pipenv run coveralls
documentation: documentation:
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
- name: dependencies - name: dependencies
run: | run: |
sudo apt-get update -qq sudo apt-get update -qq
sudo apt-get install -qq libpoppler-cpp-dev unpaper tesseract-ocr imagemagick ghostscript optipng sudo apt-get install -qq libpoppler-cpp-dev unpaper tesseract-ocr imagemagick ghostscript optipng
pip install --upgrade pipenv pip install --upgrade pipenv
pipenv install --system --dev pipenv install --system --dev
- name: make - name: make
run: | run: |
cd docs/ cd docs/
make html make html
frontend: frontend:
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
- uses: actions/setup-node@v2 - uses: actions/setup-node@v2
with: with:
node-version: '15' node-version: '15'
- name: dependencies - name: dependencies
run: | run: |
cd src-ui/ cd src-ui/
npm install -g @angular/cli npm install -g @angular/cli
npm install npm install
- name: build - name: build
run: | run: |
ng build --prod ng build --prod
# Build and push image to docker hub. # Build and push image to docker hub.
buildx: buildx:
runs-on: ubuntu-latest runs-on: ubuntu-latest