Skip to content

WIP: Thoth.Json library agnostic #35

WIP: Thoth.Json library agnostic

WIP: Thoth.Json library agnostic #35

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 and use custom npm version
# run: npm i -g npm@7
# - name: Install dependencies
# run: npm install
- 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