Skip to content

Fixing build.yml

Fixing build.yml #1

Workflow file for this run

name: Build and Run Automated Tests
on: [push, pull_request]
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- name: Set up CMake, Ninja, and MSVC
uses: lukka/[email protected]
- name: Configure CMake
# sqlite3 handled by CMake
run: cmake -S . -B build -G "Ninja"
- name: Build
run: cmake --build build
- name: Test
run: ./bin/testing