Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
39 changes: 39 additions & 0 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@

name: PR Verification

on:
workflow_dispatch:
pull_request:
paths-ignore:
- "**/*"
- '!src/Refitter/**/*.cs'
- '!src/Refitter.Core/**/*.cs'
- '!src/Refitter.SourceGenerator/**/*.cs'
- '!src/Refitter/**/*.csproj'
- '!src/Refitter.Core/**/*.csproj'
- '!src/Refitter.SourceGenerator/**/*.csproj'
- "!.github/workflows/template.yml"
- "!.github/workflows/template-url.yml"
- "!.github/workflows/smoke-tests.yml"
- "!test/smoke-tests.ps1"
Comment thread
christianhelle marked this conversation as resolved.
branches:
- "main"

permissions:
contents: read

jobs:

script:
runs-on: ubuntu-latest
steps:
- name: 🛒 Checkout repository
uses: actions/checkout@v5
- uses: actions/setup-dotnet@v5
with:
dotnet-version: '9.0'

- name: 🛠️ Run smoke test script
run: ./smoke-tests.ps1
working-directory: test
shell: pwsh
Comment thread Fixed
Comment thread
coderabbitai[bot] marked this conversation as resolved.
13 changes: 0 additions & 13 deletions .github/workflows/smoke-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,19 +16,6 @@ on:
- "!.github/workflows/template-url.yml"
- "!.github/workflows/smoke-tests.yml"
- "!test/smoke-tests.ps1"
pull_request:
paths-ignore:
- "**/*"
- '!src/Refitter/**/*.cs'
- '!src/Refitter.Core/**/*.cs'
- '!src/Refitter.SourceGenerator/**/*.cs'
- '!src/Refitter/**/*.csproj'
- '!src/Refitter.Core/**/*.csproj'
- '!src/Refitter.SourceGenerator/**/*.csproj'
- "!.github/workflows/template.yml"
- "!.github/workflows/template-url.yml"
- "!.github/workflows/smoke-tests.yml"
- "!test/**/*"
branches:
- "main"

Expand Down
Loading