Skip to content

Commit

Permalink
CI: test pip install
Browse files Browse the repository at this point in the history
  • Loading branch information
nim65s committed May 18, 2024
1 parent 2b8319b commit fc6b36c
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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 .

0 comments on commit fc6b36c

Please sign in to comment.