diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c212828d1..ef1b951d6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -39,8 +39,8 @@ jobs: steps: - uses: actions/checkout@v3 - - name: Check, build and doc 🎯 - Spark [${{ matrix.spark }}] - scope [${{ matrix.scope }}] - uses: ./.github/actions/check_build_and_doc - env: - SPARK_VERSION: ${{ matrix.spark }} - SCOPE: ${{ matrix.scope }} + - name: Create Todo Comments + uses: gkampitakis/github-action-todo-commenter@v1 + with: + github-token: ${{ secrets.GITHUB_TOKEN }} + review-message: "Please take a look :eyes:" diff --git a/core/src/main/scala/doric/sem/AggregationOps.scala b/core/src/main/scala/doric/sem/AggregationOps.scala index a1abc0373..43d0d0d5c 100644 --- a/core/src/main/scala/doric/sem/AggregationOps.scala +++ b/core/src/main/scala/doric/sem/AggregationOps.scala @@ -103,6 +103,7 @@ private[sem] trait AggregationOps * @note this function by default retains the grouping columns in its output. * To not retain grouping columns, set `spark.sql.retainGroupColumns` to false. * @group Group Dataframe operation + * @todo scala doc * @see [[org.apache.spark.sql.Dataset.agg(expr:* org.apache.spark.sql.Dataset.agg]] */ def agg(col: DoricColumn[_], cols: DoricColumn[_]*): DataFrame =