Skip to content

Commit

Permalink
chore: update elixir ci
Browse files Browse the repository at this point in the history
  • Loading branch information
Ziinc committed Oct 9, 2023
1 parent 6f6762f commit aeecdd0
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions .github/workflows/ex-tests.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Elixir Unit Tests
name: Elixir CI

on:
workflow_dispatch:
Expand Down Expand Up @@ -26,14 +26,14 @@ jobs:
uses: actions/cache@v3
with:
path: |
deps
key: ${{ runner.os }}-mix-${{ hashFiles('**/mix.lock') }}
restore-keys: ${{ runner.os }}-mix
logflare-ex/deps
key: mix-${{ hashFiles('**/mix.lock') }}
restore-keys: mix
- run: mix deps.get
- run: mix test

compile_check:
name: Unit tests
name: Compilation warnings
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
Expand All @@ -46,14 +46,14 @@ jobs:
uses: actions/cache@v3
with:
path: |
deps
key: ${{ runner.os }}-mix-${{ hashFiles('**/mix.lock') }}
restore-keys: ${{ runner.os }}-mix
logflare-ex/deps
key: mix-${{ hashFiles('**/mix.lock') }}
restore-keys: mix
- run: mix deps.get
- run: mix test.compile

formatting:
name: Unit tests
name: Formatting
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
Expand All @@ -66,8 +66,8 @@ jobs:
uses: actions/cache@v3
with:
path: |
deps
key: ${{ runner.os }}-mix-${{ hashFiles('**/mix.lock') }}
restore-keys: ${{ runner.os }}-mix
logflare-ex/deps
key: mix-${{ hashFiles('**/mix.lock') }}
restore-keys: mix
- run: mix deps.get
- run: mix test.formatting
- run: mix test.formatting

0 comments on commit aeecdd0

Please sign in to comment.