Skip to content

Commit c7a0348

Browse files
authored
Merge pull request #360 from argentlabs/ci-fix
[FIX] CI should run pull request, not pull-request-target. Run test/build without verbose
2 parents cc721d0 + 19b056b commit c7a0348

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/CI.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: CI
22

33
on:
4-
pull_request_target:
4+
pull_request:
55
branches: [ develop ]
66
workflow_dispatch:
77

@@ -34,10 +34,10 @@ jobs:
3434
run: ./scripts/setupKey.sh "${{ secrets.TESTS_PRIVATEKEY }}"
3535

3636
- name: Build
37-
run: swift build -v
37+
run: swift build
3838

3939
- name: Tests
40-
run: swift test -v
40+
run: swift test
4141

4242
test_linux:
4343
needs: [run_lint, test_macos]
@@ -57,7 +57,7 @@ jobs:
5757
run: ./scripts/setupKey.sh "${{ secrets.TESTS_PRIVATEKEY }}"
5858

5959
- name: Build
60-
run: swift build -v
60+
run: swift build
6161

6262
- name: Tests
63-
run: swift test -v
63+
run: swift test

0 commit comments

Comments
 (0)