Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 31 additions & 0 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: CI

on:
push:
pull_request:

jobs:
buildAndTest:

runs-on:
- windows-latest

steps:
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 6.0.428
- name: Build & Run Tests
run: |
.\build.cmd
- name: Upload artifact (bin)
uses: actions/upload-artifact@v4
with:
name: bin
path: bin
- name: Upload artifact (dist)
uses: actions/upload-artifact@v4
with:
name: dist
path: dist
14 changes: 0 additions & 14 deletions appveyor.yml

This file was deleted.

6 changes: 3 additions & 3 deletions build.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
rem change the target via -t, e.g.:
rem build -t PackNuget
cls
dotnet tool restore
dotnet paket restore
dotnet tool restore || exit /b 1
dotnet paket restore || exit /b 1
rem set FAKE_SDK_RESOLVER_CUSTOM_DOTNET_VERSION=8.0
rem Build with Fake or FSI:
dotnet fake run build.fsx %*
dotnet fake run build.fsx %* || exit /b 1
rem dotnet fsi build.fsx %*
Loading