Skip to content

Commit

Permalink
DotNetRGS: add ci
Browse files Browse the repository at this point in the history
  • Loading branch information
aarani committed May 26, 2023
1 parent d5bd945 commit 7d4e861
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/CI.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,22 @@ jobs:
run: dotnet restore ./DotNetRGS.Server/DotNetRGS.Server.fsproj
- name: Build
run: dotnet build ./DotNetRGS.Server/DotNetRGS.Server.fsproj --no-restore
build-dotnetrgs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
submodules: 'true'
- name: install missing dependencies
run: sudo apt install --yes fsharp nunit-console
- name: install last version of mono (Microsoft APT repositories)
run: sudo ./scripts/install_mono_from_microsoft_deb_packages.sh
- name: check mono version
run: mono --version
- uses: nuget/setup-nuget@v1
with:
nuget-version: '6.5.0'
- name: Restore dependencies
run: nuget restore ./DotNetRGS/DotNetRGS.fsproj
- name: Build
run: msbuild ./DotNetRGS/DotNetRGS.fsproj /p:Configuration=Release

0 comments on commit 7d4e861

Please sign in to comment.