Skip to content

Merge pull request #8 from peekxc/dev #29

Merge pull request #8 from peekxc/dev

Merge pull request #8 from peekxc/dev #29

Workflow file for this run

name: Build Windows package
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build_windows:
name: ${{ matrix.os }} - Python ${{ matrix.python-version }}
runs-on: ${{ matrix.os }}
env:
CC: clang-cl
CXX: clang-cl
LDFLAGS: "-Wl,-S"
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
strategy:
fail-fast: false
matrix:
os: ["windows-latest"]
python-version: ["3.8", "3.9", "3.10", "3.11"]
steps:
- name: Checkout
uses: actions/checkout@v3
with:
submodules: true
- name: Set up Clang
uses: egor-tensin/setup-clang@v1
with:
version: latest
platform: x64
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install pytest pytest-cov coverage-badge coveralls pytest-benchmark
- name: Install package
run: |
pip install --verbose .
- name: Test with pytest
run: |
python -m pytest tests/ --cov=simplextree --benchmark-skip
coverage run --source=./simplextree -m pytest tests/ --benchmark-skip
coverage json -o tests/test_results.json
coverage report -m