feat: implement SDK #2
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: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
env: | |
DEEPSOURCE_DSN: ${{secrets.DEEPSOURCE_DSN}} | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
pull-requests: write | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
ref: ${{ github.event.pull_request.head.sha }} | |
- name: Setup Swift | |
uses: swift-actions/setup-swift@v1 | |
- name: Download the DeepSource CLI | |
run: curl https://deepsource.io/cli | sh | |
- name: Run tests | |
run: swift test --enable-code-coverage | |
- name: Create Coverage Report | |
uses: maxep/[email protected] | |
with: | |
output-file: ./coverage/lcov.info | |
- name: Upload Coverage Report | |
run: ./bin/deepsource report --analyzer test-coverage --key swift --value-file ./coverage/lcov.info |