Skip to content

- updated version, Changelog.txt #163

- updated version, Changelog.txt

- updated version, Changelog.txt #163

Workflow file for this run

name: build-windows
on:
push:
branches: [ master ]
jobs:
build-windows:
runs-on: windows-latest
strategy:
matrix:
python-version: [3.7]
# python-version: [2.7, 3.5, 3.6, 3.7, 3.8]
steps:
# Checkout repo
- uses: actions/checkout@v3
# Set up python
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
# Configure, build and test
- name: configure
run: mkdir build-release;cd build-release;cmake ..
shell: pwsh
- name: build
run: cmake --build build-release --config Release
- name: tests
run: cd bin;./KernelTests;./ReadWriteStateTests
shell: pwsh