Skip to content

Commit

Permalink
ci: add dotnet build/test ci action
Browse files Browse the repository at this point in the history
  • Loading branch information
Gustav-Eikaas committed Aug 29, 2024
1 parent f5b84fc commit 2b765d2
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/backend-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,13 @@ jobs:
name: Backend pr job
runs-on: ubuntu-latest
steps:
- name: Write your own steps here
run: echo "----- Need Implementation ----"
- name: Checkout
uses: actions/checkout@v4

- name: Dotnet build
shell: bash
run: dotnet build ./backend/src/Equinor.ProjectExecutionPortal.sln

- name: Dotnet test
shell: bash
run: dotnet test ./backend/src/Equinor.ProjectExecutionPortal.sln

0 comments on commit 2b765d2

Please sign in to comment.