Skip to content

- Initial release.

- Initial release. #2

Workflow file for this run

name: CI
on:
push:
pull_request:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
std: [c++11, c++17]
steps:
- uses: actions/checkout@v4
- name: "Build and run tests (std: ${{ matrix.std }})"
run: |
g++ -std=${{ matrix.std }} tests/main.cpp -O2 -o tests/run_tests
./tests/run_tests