Website updates. #9
Workflow file for this run
This file contains hidden or 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: Build tests | |
| on: [push, pull_request] | |
| jobs: | |
| build: | |
| strategy: | |
| matrix: | |
| os: [ windows-latest, ubuntu-latest, macos-latest ] | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| architecture: 'x64' | |
| # install dependencies | |
| - name: CMake build | |
| run: cmake -B build && cmake --build build | |
| - name: autoconf build | |
| if: ${{ matrix.os == 'ubuntu-latest' }} | |
| run: | | |
| autoreconf -if | |
| ./configure | |
| make clean | |
| make |