mirror of
https://github.com/simtactics/SimAINet.git
synced 2025-09-06 14:25:47 -04:00
Ported over more code from FSO
- Renamed VMInstruction.cs to VMThread.cs - Created README.md - Added Github CI
This commit is contained in:
parent
5620d11d95
commit
6c0d63d4bb
25 changed files with 1180 additions and 50 deletions
23
.github/workflows/build.yml
vendored
Normal file
23
.github/workflows/build.yml
vendored
Normal file
|
@ -0,0 +1,23 @@
|
|||
name: build
|
||||
|
||||
on: [push, pull_request]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
|
||||
runs-on: ${{ matrix.os }}
|
||||
strategy:
|
||||
matrix:
|
||||
dotnet: [ '3.1.200', '3.1.201' ]
|
||||
build_mode: [ 'Release', 'Debug' ]
|
||||
os: [ubuntu-latest, windows-latest, macOS-latest]
|
||||
steps:
|
||||
- uses: actions/checkout@v1
|
||||
- name: Setup .NET Core
|
||||
uses: actions/setup-dotnet@v1
|
||||
with:
|
||||
dotnet-version: ${{ matrix.dotnet }}
|
||||
- name: Build
|
||||
run: dotnet build src -c ${{ matrix.build_mode }}
|
||||
- name: Run tests
|
||||
run: dotnet test src -c ${{ matrix.build_mode }}
|
Loading…
Add table
Add a link
Reference in a new issue