-
-
Notifications
You must be signed in to change notification settings - Fork 54
43 lines (40 loc) · 1.27 KB
/
test.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
name: test
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
on:
pull_request: { types: [opened, reopened, synchronize, ready_for_review] }
push: { branches: [ main ] }
jobs:
linux-integration:
if: ${{ !(github.event.pull_request.draft || false) }}
runs-on: ubuntu-latest
container: swift:jammy
steps:
- name: Check out JWTKit
uses: actions/checkout@v4
with:
path: jwt-kit
- name: Check out JWT provider
uses: actions/checkout@v4
with:
repository: vapor/jwt
path: jwt
- name: Use local JWTKit
run: swift package --package-path jwt edit jwt-kit --path ./jwt-kit
- name: Run tests with Thread Sanitizer
run: swift test --package-path jwt --sanitize=thread
unit-tests:
uses: vapor/ci/.github/workflows/run-unit-tests.yml@main
with:
with_api_check: ${{ github.event_name == 'pull_request' }}
warnings_as_errors: true
secrets: inherit
ios-tests:
if: ${{ !(github.event.pull_request.draft || false) }}
runs-on: macos-latest
steps:
- name: Check out JWTKit
uses: actions/checkout@v4
- name: Run iOS Tests
run: xcodebuild -scheme jwt-kit -destination generic/platform=iOS