Skip to content

Merge pull request #206 from kunaljubce/add-ci-tests-on-latest-spark #87

Merge pull request #206 from kunaljubce/add-ci-tests-on-latest-spark

Merge pull request #206 from kunaljubce/add-ci-tests-on-latest-spark #87

Workflow file for this run

name: MKDocs deploy
on:
push:
branches:
- main
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.9
uses: actions/setup-python@v2
with:
python-version: 3.9
- name: Set up Poetry
uses: abatilo/actions-poetry@v2
with:
poetry-version: 1.4.0
- name: Cache Poetry virtualenv
uses: actions/cache@v1
id: cache
with:
path: ~/.virtualenvs
key: poetry-${{ hashFiles('**/poetry.lock') }}
restore-keys: |
poetry-${{ hashFiles('**/poetry.lock') }}
- name: Install dependencies
run:
make install_deps
if: steps.cache.outputs.cache-hit != 'true'
- name: Setup GH
run: |
sudo apt update && sudo apt install -y git
git config user.name 'github-actions[bot]'
git config user.email 'github-actions[bot]@users.noreply.github.com'
- name: Build and Deploy
run:
poetry run mkdocs gh-deploy --force