Updates test app to have more functionality so we can verify multiple… #4281
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: Copyright check | |
on: pull_request | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
copyright-check: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v3.0.2 | |
- uses: actions/setup-python@v2 | |
with: | |
python-version: '3.9' | |
- run: | | |
pip install -e "ci/fireci" | |
- run: | | |
fireci copyright_check \ | |
-e py \ | |
-e gradle \ | |
-e java \ | |
-e kt \ | |
-e groovy \ | |
-e sh \ | |
-e proto |