Skip to content

Replace configsuite with pydantic #1187

Replace configsuite with pydantic

Replace configsuite with pydantic #1187

Workflow file for this run

name: CI
on: [pull_request]
env:
ERT_SHOW_BACKTRACE: 1
jobs:
tests:
name: "Python ${{ matrix.python-version }} on ${{ matrix.os }}"
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]
os: [ubuntu-latest]
include:
- python-version: "3.11"
os: macos-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-python@v4
with:
python-version: "${{ matrix.python-version }}"
- name: "Install dependencies"
run: python -m pip install tox tox-gh-actions
- name: "Run tox targets on ${{ matrix.os }} for ${{ matrix.python-version }}"
run: "python -m tox"