Skip to content

Containerized CI and expansion to trigger external tests #1

Containerized CI and expansion to trigger external tests

Containerized CI and expansion to trigger external tests #1

Workflow file for this run

name: "Build test"
on:
push:
pull_request:
types: [opened, synchronize, reopened, ready_for_review, labeled, unlabeled]
jobs:
all:
runs-on: ubuntu-latest
strategy:
matrix:
python: [3.8.12, 3.11.7]
steps:
- name: Checkout repository
uses: actions/[email protected]
with:
submodules: 'recursive'
- name: Setup Python
uses: actions/[email protected]
with:
python-version: ${{ matrix.python }}
- name: Install OpenMPI & Boost for gt4py
run: |
sudo apt-get install libopenmpi-dev libboost1.74-dev
- name: Install Python packages
run: |
python -m pip install --upgrade pip setuptools wheel
pip install .[test]