Add initial project structure with CMake configuration, Clang format … #21
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: Deno Integration Tests | |
| on: | |
| push: | |
| branches: [ main, master ] | |
| pull_request: | |
| jobs: | |
| deno-tests: | |
| name: Deno integration tests (deno ${{ matrix.deno }}) | |
| runs-on: windows-latest | |
| strategy: | |
| matrix: | |
| deno: ["2.6.0", "2.5.0"] | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Setup CMake >= 3.30 | |
| uses: jwlawson/actions-setup-cmake@v2 | |
| with: | |
| cmake-version: "3.31.x" | |
| - name: Setup Deno | |
| uses: denoland/setup-deno@v2 | |
| with: | |
| deno-version: ${{ matrix.deno }} | |
| - name: Configure CMake | |
| run: | | |
| cmake --preset windows-vs-release | |
| - name: Build | |
| run: | | |
| cmake --build --preset windows-vs-release --config Release | |
| - name: Run Deno integration tests | |
| working-directory: integration_tests | |
| run: | | |
| deno task test |