Skip to content

Get measured data using active realizations #9431

Get measured data using active realizations

Get measured data using active realizations #9431

Workflow file for this run

name: Annotate Python
on: [pull_request]
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
annotate-python-linting:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: -1
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: "3.11"
- name: Install flake8
run: pip install flake8 flake8-bugbear flake8-simplify flake8-debugger flake8-pep3101
- name: install project
run: pip install .
- name: install dev requirements
run: pip install -r dev-requirements.txt
- name: install typing requirements
run: pip install -r types-requirements.txt
- name: find changed files
id: find_changed_files
run: echo "changed_files=$(git diff --name-only ${{github.sha}} ${{github.event.pull_request.base.sha}} | tr ' ' '\n' | xargs ls -d 2>/dev/null | grep -E '.py$' | tr '\n' ' ')" >> "$GITHUB_OUTPUT"
- run: echo ::add-matcher::.github/flake8-matcher.json
- name: run flake8
run: flake8 --exit-zero --ignore "B028, W503, E203" ${{steps.find_changed_files.outputs.changed_files}}
if: steps.find_changed_files.outputs.changed_files != ''
- run: echo ::add-matcher::.github/mypy-matcher.json
- name: generate grpc typing stubs
run: python -m grpc_tools.protoc -I src/_ert_com_protocol --mypy_out=src/_ert_com_protocol src/_ert_com_protocol/_schema.proto
- name: run mypy
run: mypy ${{steps.find_changed_files.outputs.changed_files}} --config-file .mypy-annotate.ini
if: steps.find_changed_files.outputs.changed_files != ''
continue-on-error: true