Skip to content

Organize TMG-Framework to use XTMF2-Dev directory #80

Organize TMG-Framework to use XTMF2-Dev directory

Organize TMG-Framework to use XTMF2-Dev directory #80

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
build:
runs-on: windows-2025
steps:
- name: Setup .NetCore
uses: actions/setup-dotnet@v1
with:
dotnet-version: 10.0.101
- uses: actions/checkout@v1
with:
repository: TravelModellingGroup/XTMF2
ref: origin/dev
- name: Build XTMF2
run: |
cd "XTMF2"
dotnet build -c Release
- uses: actions/checkout@v1
- name: Build TMG-Framework
run: |
cd "TMG-Framework"
dotnet build -c Release
- name: Unit Tests
run: |
cd "TMG-Framework"
dotnet test -c Release