Fix nested extend with sugar #210
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 | |
on: | |
- pull_request | |
jobs: | |
unit-tests: | |
uses: vapor/ci/.github/workflows/run-unit-tests.yml@reusable-workflows | |
with: | |
with_coverage: false | |
with_tsan: true | |
leaf: | |
container: | |
image: swift:5.6-focal | |
runs-on: ubuntu-latest | |
steps: | |
- run: git clone -b main https://github.com/vapor/leaf.git | |
working-directory: ./ | |
- run: swift package edit leaf-kit --revision ${{ github.sha }} | |
working-directory: ./leaf | |
- run: swift test --sanitize=thread | |
env: | |
SWIFT_DETERMINISTIC_HASHING: 1 | |
working-directory: ./leaf |