Honor remove_duplicates when searching nested data #1479
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: test-examples | |
| on: | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - '.github/actions/install/action.yml' | |
| - '.github/workflows/test-examples.yml' | |
| - '.pylintrc' | |
| - 'bin/convert_notebooks.sh' | |
| - 'bin/install.sh' | |
| - 'concordia/**' | |
| - 'examples/**' | |
| - 'pyproject.toml' | |
| - 'requirements.txt' | |
| - 'setup.py' | |
| pull_request: | |
| branches: | |
| - main | |
| paths: | |
| - '.github/actions/install/action.yml' | |
| - '.github/workflows/test-examples.yml' | |
| - '.pylintrc' | |
| - '.python-version' | |
| - 'bin/convert_notebooks.sh' | |
| - 'bin/install.sh' | |
| - 'concordia/**' | |
| - 'examples/**' | |
| - 'pyproject.toml' | |
| - 'requirements.txt' | |
| - 'setup.py' | |
| workflow_dispatch: | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.head_ref || github.ref }} | |
| cancel-in-progress: true | |
| permissions: read-all | |
| jobs: | |
| test-examples: | |
| name: Test examples | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 90 | |
| steps: | |
| - name: Checkout Concordia | |
| uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 | |
| - name: Install Concordia | |
| uses: ./.github/actions/install | |
| - name: Test examples | |
| run: pytest examples | |
| - name: Lint examples | |
| run: pylint --errors-only examples | |
| - name: Typecheck examples | |
| run: pyrefly check examples/**/*.py |