Skip to content

Fix integration tests for gendata_rft #914

Fix integration tests for gendata_rft

Fix integration tests for gendata_rft #914

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"]
os: [ubuntu-latest]
include:
- python-version: 3.8
os: macos-latest
steps:
- uses: "actions/checkout@v2"
with:
fetch-depth: 0
- uses: "actions/setup-python@v2"
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"