Skip to content

Commit

Permalink
fixed dotnet-ubuntu.yml file
Browse files Browse the repository at this point in the history
  • Loading branch information
bezzad committed Aug 19, 2024
1 parent 143d4c7 commit 6bc2159
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/dotnet-ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@ name: Ubuntu x64

on: [ push ]

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
build:
runs-on: ubuntu-latest
Expand All @@ -15,10 +19,10 @@ jobs:
dotnet-version: 8.0.x

- name: Build solution
run: dotnet build -c Release --verbosity minimal
run: dotnet build -c Release ./src --verbosity minimal

- name: Run tests
run: dotnet test -c Release --verbosity normal --no-build --no-restore
run: dotnet test -c Release ./src --verbosity normal --no-build --no-restore

- name: Publish
run: dotnet publish -c Release --no-build --no-restore
run: dotnet publish -c Release ./src --no-build --no-restore

0 comments on commit 6bc2159

Please sign in to comment.