diff --git a/.github/workflows/build.yml b/.github/workflows/build_and_test.yml similarity index 99% rename from .github/workflows/build.yml rename to .github/workflows/build_and_test.yml index 85d02ca5a94..b15e8ba6d89 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build_and_test.yml @@ -1,4 +1,4 @@ -name: Python package +name: Build and test ERT and docs on: push: @@ -102,9 +102,9 @@ jobs: strategy: fail-fast: false matrix: + test-type: [ 'integration-tests', 'unit-tests', 'gui-test' ] python-version: [ '3.8', '3.9', '3.10', '3.11' ] os: [ ubuntu-latest ] - test-type: [ 'integration-tests', 'unit-tests', 'gui-test' ] exclude: - os: ubuntu-latest python-version: '3.9' @@ -123,9 +123,9 @@ jobs: strategy: fail-fast: false matrix: + test-type: [ 'integration-tests', 'unit-tests', 'gui-test' ] python-version: [ '3.10' ] os: [ macos-latest ] - test-type: [ 'integration-tests', 'unit-tests', 'gui-test' ] uses: ./.github/workflows/test_ert.yml with: os: ${{ matrix.os }}