Update deps-test.yml #93
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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: | |
# also serves as code coverage baseline update | |
unit-tests: | |
uses: vapor/ci/.github/workflows/run-unit-tests.yml@main | |
# Make sure downstream dependents still work | |
dependents-check: | |
if: ${{ !(github.event.pull_request.draft || false) }} | |
runs-on: ubuntu-latest | |
container: swift:5.9-jammy | |
steps: | |
- name: Check out package | |
uses: actions/checkout@v4 | |
with: | |
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 fluent-sqlite-driver edit sqlite-kit --path sqlite-kit | |
- name: Run FluentSQLiteDriver tests with Thread Sanitizer | |
run: swift test --package-path fluent-sqlite-driver --sanitize=thread |