diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 1081ade..aac2de4 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -26,47 +26,6 @@ jobs: steps: # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - uses: actions/checkout@v3 - - # Runs a lines of code reporter - # For Android App: - - name: lines-of-code-reporter.android - uses: PavanMudigonda/lines-of-code-reporter@v1.3 - with: - directory: androidApp/ - github_token: ${{ secrets.GITHUB_TOKEN }} - skip_check_run: false - - name: print loc android code - shell: pwsh - run: | - Write-Host 'Total Lines of Code Android App...: ${{ steps.lines-of-code-reporter.android.outputs.total_lines }}' - Write-Host 'Lines of Code Markdown Report Path...: ${{ steps.lines-of-code-reporter.android.outputs.loc_report }}' - - ## For iOS app: - - name: lines-of-code-reporter.ios - uses: PavanMudigonda/lines-of-code-reporter@v1.3 - with: - directory: iosApp/ - github_token: ${{ secrets.GITHUB_TOKEN }} - skip_check_run: false - - name: print loc ios code - shell: pwsh - run: | - Write-Host 'Total Lines of Code iOS App...: ${{ steps.lines-of-code-reporter.ios.outputs.total_lines }}' - Write-Host 'Lines of Code Markdown Report Path...: ${{ steps.lines-of-code-reporter.ios.outputs.loc_report }}' - - ## For shared code: - - name: lines-of-code-reporter.shared - uses: PavanMudigonda/lines-of-code-reporter@v1.3 - with: - directory: shared/ - github_token: ${{ secrets.GITHUB_TOKEN }} - skip_check_run: false - - name: print loc shared code - shell: pwsh - run: | - Write-Host 'Shared code report: {Shared code report}' - Write-Host 'Total Lines of Code Shared Code...: ${{ steps.lines-of-code-reporter.shared.outputs.total_lines }}' - Write-Host 'Lines of Code Markdown Report Path...: ${{ steps.lines-of-code-reporter.shared.outputs.loc_report }}' ## update readme: - name: update_readme run: |