Skip to content

Merge remote-tracking branch 'upstream/master' #246

Merge remote-tracking branch 'upstream/master'

Merge remote-tracking branch 'upstream/master' #246

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
Windows:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 8.0.x
- name: Build
run: dotnet build -c Altcoins-Release BTCPayServer/BTCPayServer.csproj
Linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 8.0.x
- name: Build
run: dotnet build -c Altcoins-Release BTCPayServer/BTCPayServer.csproj
Mac:
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 8.0.x
- name: Build
run: dotnet build -c Altcoins-Release BTCPayServer/BTCPayServer.csproj