Updated null checks in various getters of the CurrentApp class. #733
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
# | |
# SPDX-FileCopyrightText: 2011-2024 EasyCoding Team | |
# | |
# SPDX-License-Identifier: GPL-3.0-or-later | |
# | |
name: Linux CI | |
on: | |
push: | |
branches: | |
- 'master' | |
pull_request: | |
branches: | |
- 'master' | |
jobs: | |
build: | |
name: Build project using Mono | |
runs-on: ubuntu-latest | |
steps: | |
- name: Fetching sources | |
uses: actions/checkout@v4 | |
- name: Updating apt package metadata | |
run: | | |
sudo apt-get update | |
- name: Installing NuGet package manager | |
run: | | |
sudo apt-get -y install nuget | |
- name: Restoring dependencies with NuGet | |
run: | | |
nuget restore srcrepair.sln | |
- name: Building project with MSBuild | |
run: | | |
msbuild /p:Configuration=Release srcrepair.sln |