Skip to content

Closing #34 Created a script to auto generate the uml and ER diagrams #3

Closing #34 Created a script to auto generate the uml and ER diagrams

Closing #34 Created a script to auto generate the uml and ER diagrams #3

Workflow file for this run

name: Generate Diagrams
on:
push:
paths: [ '**.plantuml' ]
branches: [ "main" ]
pull_request:
paths: [ '**.plantuml' ]
branches: [ "main" ]
jobs:
run_tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Run ./generate_diagrams.sh
run: |
chmod +x ./generate_diagrams.sh
./generate_diagrams.sh
shell: bash