Skip to content

Commit

Permalink
chore: build workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
lpcouto committed Jan 24, 2024
1 parent 8f6b703 commit 726811b
Showing 1 changed file with 51 additions and 0 deletions.
51 changes: 51 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -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"

0 comments on commit 726811b

Please sign in to comment.