Use alpine instead of Debian image for testing #24
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Runtime tests | |
name: Runtime | |
on: | |
push: | |
branches: ["master"] | |
pull_request: | |
branches: ["master"] | |
jobs: | |
test: | |
name: Runtime | |
runs-on: ubuntu-latest | |
container: python:3.13-alpine3.21 | |
steps: | |
- name: Install Alpine Dependencies | |
run: apk add cmake git make | |
- name: Display Python version | |
run: python -c "import sys; print(sys.version)" | |
- name: Display CMake version | |
run: cmake --version | |
- name: Display Git version | |
run: git --version | |
- uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- name: Install Dependencies | |
run: pip install -e . | |
- name: Test | |
run: cmake . && ctest -VV . |