[BSD3] pass output nclx to sequence encoding options (#1588) #65
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: lint | |
| on: | |
| push: | |
| branches: [ master ] | |
| pull_request: | |
| branches: [ master ] | |
| jobs: | |
| cpplint: | |
| env: | |
| CPPLINT: 1 | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install dependencies | |
| run: | | |
| ./scripts/install-ci-linux.sh | |
| - name: Prepare CI | |
| run: | | |
| ./scripts/prepare-ci.sh | |
| - name: Check format | |
| run: | | |
| ./scripts/run-ci.sh | |
| licenses: | |
| env: | |
| CHECK_LICENSES: 1 | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install dependencies | |
| run: | | |
| ./scripts/install-ci-linux.sh | |
| - name: Prepare CI | |
| run: | | |
| ./scripts/prepare-ci.sh | |
| - name: Check licenses | |
| run: | | |
| ./scripts/run-ci.sh |