wip makemove code #309
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: .NET UnitTests | |
on: | |
[push, pull_request] | |
jobs: | |
dotnet: | |
runs-on: ubuntu-latest | |
# We want to run on external PRs, but not on our own internal PRs as they'll be run | |
# by the push to the branch. See https://github.com/Dart-Code/Dart-Code/commit/612732d5879730608baa9622bf7f5e5b7b51ae65 | |
if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != 'GHXX/FiveDChessDataInterface' | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v1 | |
with: | |
dotnet-version: 3.1.x | |
- name: Restore dependencies | |
run: dotnet restore | |
- name: Build | |
run: dotnet build --no-restore -c Release | |
- name: Run Tests | |
run: dotnet test --no-build -c Release --verbosity normal | |
- name: Publish ConsoleBuildWinx64 | |
run: dotnet publish DataInterfaceConsole --self-contained false -c Release --runtime win10-x64 -o ~/publish/win10_x64 | |
if: ${{ success() && github.event_name == 'push' && github.ref == 'refs/heads/publish' }} | |
- name: Upload ConsoleBuildWinx64Published | |
uses: actions/upload-artifact@v2 | |
with: | |
name: Console_win10_x64_${{github.sha}} | |
path: "~/publish/win10_x64/*" | |
if: ${{ success() && github.event_name == 'push' && github.ref == 'refs/heads/publish' }} | |
- name: Publish ConsoleBuildWinx64Standalone | |
run: dotnet publish DataInterfaceConsole --self-contained true -c Release --runtime win10-x64 -o ~/publish/standalone/win10_x64 | |
if: ${{ success() && github.event_name == 'push' && github.ref == 'refs/heads/publish' }} | |
- name: Upload ConsoleBuildWinx64PublishedStandalone | |
uses: actions/upload-artifact@v2 | |
with: | |
name: Console_win10_x64_standalone_${{github.sha}} | |
path: "~/publish/standalone/win10_x64/*" | |
if: ${{ success() && github.event_name == 'push' && github.ref == 'refs/heads/publish' }} |