Rename Leader
to Operator
(#3063)
#237
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: CVAT Recording Oracle Lint | |
on: | |
push: | |
paths: | |
- 'packages/examples/cvat/recording-oracle/**' | |
- '.github/workflows/ci-lint-cvat-recording-oracle.yaml' | |
env: | |
WORKING_DIR: ./packages/examples/cvat/recording-oracle | |
defaults: | |
run: | |
working-directory: ./packages/examples/cvat/recording-oracle | |
jobs: | |
cvat-exo-lint: | |
name: CVAT Recording Oracle Lint | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Poetry | |
uses: snok/install-poetry@v1 | |
with: | |
version: 1.8.4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: '3.10' | |
cache: 'poetry' | |
cache-dependency-path: ${{ env.WORKING_DIR }}/poetry.lock | |
- run: poetry install --no-root --only lint | |
- run: poetry run pre-commit run --all-files |