Document the hash function used #313
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
name: Windows Compile | |
on: [push, pull_request] | |
jobs: | |
build-cmake: | |
name: CMake | |
strategy: | |
fail-fast: false | |
matrix: | |
os: ['windows-latest'] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
# required for `git describe --tags` to work | |
fetch-depth: 0 | |
- name: Setup Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: '3.x' | |
- name: Install dependencies | |
run: pip install "conan<2" | |
- name: Build ecl | |
run: | | |
mkdir cmake-build | |
cmake -S . -B cmake-build | |
cmake --build cmake-build --config Release |