Skip to content

Commit dc39aad

Browse files
author
Yejun Su
committed
fix CI
1 parent 0360614 commit dc39aad

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

.github/workflows/main.yml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,10 @@ jobs:
1313
with:
1414
elixir-version: 1.10.4
1515
otp-version: 23.0.4
16-
- mix deps.get
17-
- mix format --check-formatted
16+
- name: Install dependencies
17+
run: mix deps.get
18+
- name: Check format
19+
run: mix format --check-formatted
1820

1921
test:
2022
runs-on: ubuntu-latest
@@ -39,5 +41,7 @@ jobs:
3941
with:
4042
elixir-version: ${{matrix.pair.elixir}}
4143
otp-version: ${{matrix.pair.otp}}
42-
- mix deps.get
43-
- mix test
44+
- name: Install dependencies
45+
run: mix deps.get
46+
- name: Run tests
47+
run: mix test

0 commit comments

Comments
 (0)