Skip to content

Commit ae67c0c

Browse files
committed
Remove keep going for more precise CI errors
1 parent 09a1621 commit ae67c0c

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
@@ -103,11 +103,11 @@ jobs:
103103
- name: Check format
104104
run: make test_formatted && echo "All Elixir source code files are properly formatted."
105105
- name: Erlang test suite
106-
run: make --keep-going test_erlang
106+
run: make test_erlang
107107
- name: Elixir test suite
108108
run: |
109109
Remove-Item 'c:/Windows/System32/drivers/etc/hosts'
110-
make --keep-going test_elixir
110+
make test_elixir
111111
112112
check_posix_compliant:
113113
name: Check POSIX-compliant
@@ -125,7 +125,7 @@ jobs:
125125
shellcheck -e SC2039,2086 bin/elixir && echo "bin/elixir is POSIX compliant"
126126
shellcheck bin/elixirc && echo "bin/elixirc is POSIX compliant"
127127
shellcheck bin/iex && echo "bin/iex is POSIX compliant"
128-
128+
129129
license_compliance:
130130
name: Check Licence Compliance
131131

@@ -136,11 +136,11 @@ jobs:
136136
id: git-config
137137
shell: bash
138138
run: git config --global url.https://github.com/.insteadOf ssh://[email protected]/
139-
139+
140140
- name: Checkout project
141141
id: checkout
142142
uses: actions/checkout@v4
143-
143+
144144
- name: "Run OSS Review Toolkit"
145145
id: ort
146146
uses: ./.github/workflows/ort

0 commit comments

Comments
 (0)