V1.4.1 - Update Packages, Refactor Code, and Add New Standards #45
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: build-ubuntu | |
on: | |
push: | |
paths-ignore: | |
- "**.md" | |
- LICENSE | |
branches: | |
- "master" | |
pull_request: | |
paths-ignore: | |
- "**.md" | |
- LICENSE | |
branches: | |
- master | |
jobs: | |
build-and-test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Init | |
run: chmod +x ./build.sh | |
- name: Install NuGet | |
uses: NuGet/[email protected] | |
- name: Setup Testspace | |
uses: testspace-com/setup-testspace@v1 | |
with: | |
domain: ${{github.repository_owner}} | |
- name: Install .NET 6 | |
uses: actions/setup-dotnet@v1 | |
with: | |
dotnet-version: "6.0.x" | |
- name: Install .NET 7 | |
uses: actions/setup-dotnet@v1 | |
with: | |
dotnet-version: "7.0.x" | |
- name: Build | |
run: ./build.sh --target build | |
- name: Run Tests | |
run: ./build.sh --target tests --skipFunctionalTest false --exclusive | |
- name: Push result to Testspace server | |
run: | | |
testspace [linux]**/*.trx | |
if: always() |