Skip to content

Merge pull request #123 from joshkotrous/profiles-list #155

Merge pull request #123 from joshkotrous/profiles-list

Merge pull request #123 from joshkotrous/profiles-list #155

Workflow file for this run

# name: Documentation
# on:
# push:
# branches:
# - main
# jobs:
# generate_documentation:
# name: Generate Documentation
# runs-on: ubuntu-latest
# steps:
# - name: Checkout code
# uses: actions/checkout@v2
# with:
# ref: main
# - name: Set up Python
# uses: actions/setup-python@v2
# with:
# python-version: 3.12
# - name: Install dependencies
# run: |
# pip install -r requirements.txt
# - name: Run DRF Spectacular
# run: |
# python manage.py spectacular --file schema.yml
# - name: Commit documentation changes
# run: |
# git config --local user.email "[email protected]"
# git config --local user.name "GitHub Action"
# git add schema.yml
# git commit -m "Generate documentation"
# git push https://@github.com/joshkotrous/devume-backend.git main