-
Notifications
You must be signed in to change notification settings - Fork 0
34 lines (34 loc) · 1.07 KB
/
test.yaml
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
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