💥 Add testdouble stubbing chained methods example #111
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
name: 🚀 Deploy Docs on push | |
on: | |
push: | |
branches: | |
- master | |
paths: | |
- 'docs/**' | |
jobs: | |
build: | |
name: 🎉 Deploy | |
runs-on: ubuntu-latest | |
steps: | |
- name: 🚚 Get latest code | |
uses: actions/[email protected] | |
- name: 🐱👤 Setup Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3.x | |
- name: 💥 Build Docs | |
run: | | |
pip install mkdocs-material | |
mkdocs build | |
- name: 🔥 Sync files to the server | |
uses: SamKirkland/[email protected] | |
with: | |
server: ${{ secrets.ftpserver }} | |
username: ${{ secrets.ftpuser }} | |
password: ${{ secrets.ftppass }} | |
local-dir: ./site/ | |
server-dir: public_html/ |