Skip to content

Improve test formatting, fix wrong order 🐛 #43

Improve test formatting, fix wrong order 🐛

Improve test formatting, fix wrong order 🐛 #43

Workflow file for this run

name: CI
on:
pull_request:
branches: [ main, develop ]
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.10'
- 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