Skip to content

Commit

Permalink
Upload test artifacts and add check for do-not-merge label
Browse files Browse the repository at this point in the history
  • Loading branch information
alefranz committed Jan 19, 2024
1 parent 9599707 commit b064e58
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 6 deletions.
17 changes: 11 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
Expand All @@ -25,16 +25,21 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 8.0.x
- name: Build
run: dotnet build
run: dotnet build --no-incremental
- name: Test
run: dotnet test --no-build --verbosity normal

run: dotnet test --no-build --verbosity normal --logger trx --results-directory "TestResults"
- name: Upload test results
uses: actions/upload-artifact@v3
with:
name: dotnet-results
path: TestResults
if: ${{ always() }}
pack:
runs-on: ubuntu-latest
needs:
Expand All @@ -43,7 +48,7 @@ jobs:
if: github.event_name == 'workflow_dispatch' || (github.event_name == 'push' && startsWith(github.ref, 'refs/tags/'))
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
Expand Down
18 changes: 18 additions & 0 deletions .github/workflows/labels.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Check PR Labels

on:
pull_request:
types:
- opened
- labeled
- unlabeled

jobs:
check_labels:
runs-on: ubuntu-latest
steps:
- name: Check for "do-not-merge" label
if: contains(github.event.pull_request.labels.*.name, 'do-not-merge')
run: |
echo "This PR should not be merged."
exit 1

0 comments on commit b064e58

Please sign in to comment.