Use Spotless for code formatting #141
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
# Copyright the Hyperledger Fabric contributors. All rights reserved. | |
# SPDX-License-Identifier: Apache-2.0 | |
name: Pull request | |
on: | |
pull_request: | |
branches: | |
- main | |
workflow_dispatch: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
test: | |
uses: ./.github/workflows/test.yml | |
scan: | |
uses: ./.github/workflows/scan.yml | |
pull-request: | |
needs: test | |
name: Pull request success | |
runs-on: ubuntu-latest | |
steps: | |
- run: "true" |