This repository was archived by the owner on Sep 11, 2026. It is now read-only.
build(deps): bump lodash from 4.17.20 to 4.17.23 in /amundsen_application/static #1016
Workflow file for this run
This file contains hidden or 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: license | |
| on: | |
| push: | |
| branches: | |
| - master | |
| pull_request: | |
| branches: | |
| - master | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Set up Golang | |
| uses: actions/setup-go@v2 | |
| - name: Install addlicense | |
| run: | | |
| export PATH=${PATH}:`go env GOPATH`/bin | |
| go get -v -u github.com/google/addlicense | |
| - name: Check license python | |
| run: | | |
| export PATH=${PATH}:`go env GOPATH`/bin | |
| addlicense -check -l mit -c "Amundsen" $(find $PWD -type f -name '*.py') | |
| - name: Check license tsx | |
| run: | | |
| export PATH=${PATH}:`go env GOPATH`/bin | |
| addlicense -check -l mit -c "Amundsen" $(find $PWD -type f -name '*.tsx') |