Generate class diagrams #3
Workflow file for this run
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: diagrams | |
on: | |
# push: | |
# branches: | |
# - main | |
pull_request: | |
jobs: | |
diagrams: | |
runs-on: ubuntu-latest | |
name: "Create class diagrams of all packages" | |
steps: | |
- uses: dart-lang/setup-dart@6a218f2413a3e78e9087f638a238f6b40893203d # pin@v1 | |
with: | |
sdk: stable | |
- uses: actions/checkout@v3 | |
- name: dependencies | |
run: | | |
dart pub global activate lakos | |
sudo apt update | |
sudo apt install graphviz | |
- name: dart | |
working-directory: ./dart | |
run: lakos . -i "{test/**,example/**,example_web/**}" | dot -Tsvg -o class-diagram.svg | |
- name: flutter | |
working-directory: ./flutter | |
run: lakos . -i "{test/**,example/**}" | dot -Tsvg -o class-diagram.svg | |
- name: dio | |
working-directory: ./dio | |
run: lakos . -i "{test/**,example/**}" | dot -Tsvg -o class-diagram.svg | |
- name: file | |
working-directory: ./file | |
run: lakos . -i "{test/**,example/**}" | dot -Tsvg -o class-diagram.svg | |
- name: sqflite | |
working-directory: ./sqflite | |
run: lakos . -i "{test/**,example/**}" | dot -Tsvg -o class-diagram.svg | |
- name: logging | |
working-directory: ./logging | |
run: lakos . -i "{test/**,example/**}" | dot -Tsvg -o class-diagram.svg | |
# Source: https://stackoverflow.com/a/58035262 | |
- name: Extract branch name | |
shell: bash | |
run: echo "branch=${GITHUB_HEAD_REF:-${GITHUB_REF#refs/heads/}}" >> $GITHUB_OUTPUT | |
id: extract_branch | |
# actions/checkout fetches only a single commit in a detached HEAD state. Therefore | |
# we need to pass the current branch, otherwise we can't commit the changes. | |
# GITHUB_HEAD_REF is the name of the head branch. GitHub Actions only sets this for PRs. | |
- name: Commit & push | |
run: ./scripts/commit-code.sh ${{ steps.extract_branch.outputs.branch }} "Update class diagrams" |