Skip to content

Bump @tootallnate/once and jest #118

Bump @tootallnate/once and jest

Bump @tootallnate/once and jest #118

Workflow file for this run

on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
check-win32:
runs-on: ${{ matrix.os }}
name: Check action on 32bit windows
strategy:
fail-fast: false
matrix:
os: [windows-latest]
cmake_ver: ['', '3.19.3', '3.15.1', '2.8']
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup cmake
uses: ./
id: setup
with:
cmake-version: ${{ matrix.cmake_ver }}
use-32bit: 'true'
- name: Run cmake --version
shell: bash
if: ${{ matrix.cmake_ver != '' }}
run: |
VERSION=`cmake --version`
echo $VERSION
[[ "$VERSION" =~ "${{ matrix.cmake_ver }}" ]]
- name: Run cmake --version
shell: bash
if: ${{ matrix.cmake_ver == '' }}
run: |
cmake --version