Allow escaped quotes in tag parameters #221
Workflow file for this run
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: | |
unit-tests: | |
uses: vapor/ci/.github/workflows/run-unit-tests.yml@main | |
leaf-integration: | |
if: ${{ !(github.event.pull_request.draft || false) }} | |
runs-on: ubuntu-latest | |
container: swift:jammy | |
steps: | |
- name: Check out LeafKit | |
uses: actions/checkout@v4 | |
with: | |
path: leaf-kit | |
- name: Check out Leaf provider | |
uses: actions/checkout@v4 | |
with: | |
repository: vapor/leaf | |
path: leaf | |
- name: Use local LeafKit | |
run: swift package --package-path leaf edit leaf-kit --path ./leaf-kit | |
- name: Run tests with Thread Sanitizer | |
run: swift test --package-path leaf --sanitize=thread |