Skip to content

feat: add ResizeArray support #62

feat: add ResizeArray support

feat: add ResizeArray support #62

Workflow file for this run

name: CI
on:
pull_request:
branches: [ main, develop ]
push:
branches:
- main
workflow_dispatch:
jobs:
build:
strategy:
matrix:
platform: [ ubuntu-latest, macOS-latest, windows-latest ]
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-dotnet@v3
with:
dotnet-version: '8.0.100'
- uses: actions/setup-node@v3
with:
node-version: '20'
- name: Install Python (Windows)
if: matrix.platform == 'windows-latest'
uses: actions/setup-python@v4
with:
python-version: '3.12'
- run: python --version
- name: Test (Unix)
if: matrix.platform == 'ubuntu-latest' || matrix.platform == 'macOS-latest'
run: ./build.sh test
- name: Test (Windows)
if: matrix.platform == 'windows-latest'
run: .\build.bat test