Skip to content

Commit

Permalink
Integration and example tests
Browse files Browse the repository at this point in the history
  • Loading branch information
FranzBusch committed Jul 24, 2024
1 parent e181199 commit 22c757e
Showing 1 changed file with 17 additions and 1 deletion.
18 changes: 17 additions & 1 deletion .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Pull Request

on:
pull_request:
types: [opened, reopened, synchronize]
types: [opened, reopened, synchronize]

jobs:
soundness:
Expand All @@ -27,3 +27,19 @@ jobs:
uses: apple/swift-nio/.github/workflows/cxx_interop.yml@main
with:
linux_5_8_enabled: false

integration-tests:
name: Checks / Integration Tests
uses: apple/swift-nio/.github/workflows/swift_matrix.yml@main
with:
name: "Integration tests"
matrix_linux_5_8_enabled: false
matrix_linux_command: "apt-get update -y -q && apt-get install -y -q jq && ./scripts/integration_tests.sh"

example-tests:
name: Checks / Example Tests
uses: apple/swift-nio/.github/workflows/swift_matrix.yml@main
with:
name: "Example tests"
matrix_linux_5_8_enabled: false
matrix_linux_command: "./scripts/test-examples.sh"

0 comments on commit 22c757e

Please sign in to comment.