Skip to content

Add new code management in the list #73

Add new code management in the list

Add new code management in the list #73

Workflow file for this run

name: Deploy
on:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: 3.7
- name: Build and deploy
run: |
cp README.md docs/list.md
pip install -r requirements.txt
mkdocs build
mkdocs gh-deploy --force