diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8402a8a..854b49e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -7,8 +7,8 @@ env: CTEST_PARALLEL_LEVEL: 4 jobs: - ci: - name: "CI" + cmake: + name: "CMake" runs-on: "ubuntu-latest" steps: - uses: actions/checkout@v4 @@ -21,3 +21,13 @@ jobs: - run: cmake -B build -S . - run: cmake --build build - run: cmake --build build -t test + pip: + name: "Pip" + runs-on: "ubuntu-latest" + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-python@v4 + with: + python-version: "3.12" + - run: python -m pip install -U pip + - run: python -m pip install .