-
-
Notifications
You must be signed in to change notification settings - Fork 16
41 lines (37 loc) · 1.46 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
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 ] }
env:
LOG_LEVEL: info
SWIFT_DETERMINISTIC_HASHING: 1
jobs:
# Make sure downstream dependents still work
dependents-check:
if: ${{ !(github.event.pull_request.draft || false) }}
runs-on: ubuntu-latest
container: swift:5.10-jammy
steps:
- name: Check out package
uses: actions/checkout@v4
with: { path: 'sqlite-nio' }
- name: Check out SQLKit driver
uses: actions/checkout@v4
with: { repository: 'vapor/sqlite-kit', path: 'sqlite-kit' }
- name: Check out FluentKit driver
uses: actions/checkout@v4
with: { repository: 'vapor/fluent-sqlite-driver', path: 'fluent-sqlite-driver' }
- name: Tell dependents to use local checkout
run: |
swift package --package-path sqlite-kit edit sqlite-nio --path sqlite-nio
swift package --package-path fluent-sqlite-driver edit sqlite-nio --path sqlite-nio
- name: Run SQLiteKit tests with Thread Sanitizer
run: swift test --package-path sqlite-kit --sanitize=thread
- name: Run FluentSQLiteDriver tests with Thread Sanitizer
run: swift test --package-path fluent-sqlite-driver --sanitize=thread
unit-tests:
uses: vapor/ci/.github/workflows/run-unit-tests.yml@main
secrets: inherit