Updated missions.yaml and the first campaign mission. This is laying … #6
This file contains hidden or 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: Continuous Integration | |
| on: | |
| push: | |
| pull_request: | |
| branches: [ bleed, 'prep-*' ] | |
| permissions: | |
| contents: read # to fetch code (actions/checkout) | |
| jobs: | |
| linux: | |
| name: Linux (.NET 6.0) | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - name: Clone Repository | |
| uses: actions/checkout@v3 | |
| - name: Install .NET 6.0 | |
| uses: actions/setup-dotnet@v3 | |
| with: | |
| dotnet-version: '6.0.x' | |
| - name: Check Mods | |
| run: | | |
| sudo apt-get install lua5.1 | |
| make check-scripts | |
| make TREAT_WARNINGS_AS_ERRORS=false test | |
| linux-mono: | |
| name: Linux (mono) | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - name: Clone Repository | |
| uses: actions/checkout@v3 | |
| - name: Check Mods | |
| run: | | |
| # check-scripts does not depend on .net/mono, so is not needed here | |
| make RUNTIME=mono TREAT_WARNINGS_AS_ERRORS=false test | |
| windows: | |
| name: Windows (.NET 6.0) | |
| runs-on: windows-2019 | |
| steps: | |
| - name: Clone Repository | |
| uses: actions/checkout@v3 | |
| - name: Install .NET 6.0 | |
| uses: actions/setup-dotnet@v3 | |
| with: | |
| dotnet-version: '6.0.x' | |
| - name: Check Mods | |
| run: | | |
| choco install lua --version 5.1.5.52 | |
| $ENV:Path = $ENV:Path + ";C:\Program Files (x86)\Lua\5.1\" | |
| $ENV:TREAT_WARNINGS_AS_ERRORS = "false" | |
| .\make.ps1 check-scripts | |
| .\make.ps1 test |