This is an automated email from the ASF dual-hosted git repository. hepin pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/incubator-pekko-persistence-r2dbc.git
commit f518c5c6d6a52db4e1d6234169ce0f819a69ed29 Author: Matthew de Detrich <[email protected]> AuthorDate: Tue Apr 11 20:45:22 2023 +0200 Add header check to github workflow --- .github/workflows/headers.yml | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/.github/workflows/headers.yml b/.github/workflows/headers.yml new file mode 100644 index 0000000..2559d2e --- /dev/null +++ b/.github/workflows/headers.yml @@ -0,0 +1,30 @@ +name: Headers + +on: + pull_request: + +permissions: {} + +jobs: + check-headers: + name: Check headers + runs-on: ubuntu-20.04 + steps: + - name: Checkout + uses: actions/checkout@v3 + + - name: Setup Java 11 + uses: actions/setup-java@v3 + with: + distribution: temurin + java-version: 11 + + - name: Cache Coursier cache + uses: coursier/[email protected] + + - name: Check headers + run: |- + sbt \ + -Dsbt.override.build.repos=false \ + -Dsbt.log.noformat=false \ + +headerCheckAll --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
