diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..45bf581 --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,51 @@ +name: Build + +on: + pull_request: + + #push: + # branches: + # - main + # - release-* + +jobs: + build: + + runs-on: ubuntu-latest + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + + steps: + - uses: actions/checkout@v4 + with: + fetch-depth: 0 + + - name: GITHUB CONTEXT + env: + GITHUB_CONTEXT: ${{ toJson(github) }} + run: echo "$GITHUB_CONTEXT" + + - name: Commit Lint + uses: wagoid/commitlint-github-action@master + with: + failOnWarnings: true + + - name: Setup .NET + uses: actions/setup-dotnet@v3 + with: + dotnet-version: '2.0.x' + + - name: Build Framework + run: dotnet build LoadShedding.sln -c Release + + - name: AspNetCore UnitTests + run: | + dotnet test tests/unit-tests/Farfetch.LoadShedding.AspNetCore.Tests/Farfetch.LoadShedding.AspNetCore.Tests.csproj -c Release --logger "console;verbosity=detailed" + + - name: LoadShedding UnitTests + run: | + dotnet test tests/unit-tests/Farfetch.LoadShedding.Tests/Farfetch.LoadShedding.Tests.csproj -c Release --logger "console;verbosity=detailed" + + - name: IntegrationTests + run: | + dotnet test tests/integration-tests/Farfetch.LoadShedding.IntegrationTests/Farfetch.LoadShedding.IntegrationTests.csproj -c Release --logger "console;verbosity=detailed"