Skip to content

[Snyk] Security upgrade setuptools from 40.5.0 to 70.0.0 #1250

[Snyk] Security upgrade setuptools from 40.5.0 to 70.0.0

[Snyk] Security upgrade setuptools from 40.5.0 to 70.0.0 #1250

Workflow file for this run

name: Python
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.11"]
os: [ubuntu-latest]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: "${{ matrix.python-version }}"
- name: Install
run: |
pip install .
pip install -r test_requirements.txt
- name: Test with mypy typing
run: |
mypy --config-file mypy.ini --package webviz_ert
- name: Test with pytest
run: |
pytest
- name: Run black
uses: psf/black@stable