Skip to content

Bump undici from 5.28.3 to 5.28.4 #72

Bump undici from 5.28.3 to 5.28.4

Bump undici from 5.28.3 to 5.28.4 #72

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
run: |
VERSION=`cmake --version`
echo $VERSION
[[ "$VERSION" =~ "${{ matrix.cmake_ver }}" ]]