evaluate(): const unique_ptr<T> & -> T & #16
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: CI | |
on: [push, pull_request] | |
# workflow_dispatch: | |
# A workflow run is made up of one or more jobs that can run sequentially or in parallel | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
# - name: Install fmt | |
# uses: maximeverreault/[email protected] | |
# id: install_fmt | |
# with: | |
# version: 9.1.0 | |
# directory: /usr/local | |
# env: | |
# GH_TOKEN: ${{ github.token }} | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
python -m pip install meson ninja | |
mkdir subprojects | |
meson wrap install fmt | |
- name: Configure | |
run: meson setup --reconfigure build | |
- name: Build | |
run: meson compile -C build | |
- name: Configure | |
run: meson setup --reconfigure build | |
- name: Run tests | |
run: make tests | |
- name: Run examples | |
run: make examples |