Skip to content

Commit

Permalink
more ci adjustments
Browse files Browse the repository at this point in the history
  • Loading branch information
amokan committed Mar 27, 2022
1 parent 22be26d commit 1a35f1b
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,6 @@ on:
jobs:
build:
runs-on: ubuntu-18.04
env:
MIX_ENV: test

name: Elixir ${{ matrix.pair.elixir }} / OTP ${{ matrix.pair.otp }}

Expand Down Expand Up @@ -40,11 +38,17 @@ jobs:

- run: mix deps.unlock --check-unused

- run: HUMAN_NAME_BUILD=1 mix deps.compile
- run: mix deps.compile
env:
HUMAN_NAME_BUILD: 1

- run: HUMAN_NAME_BUILD=1 mix compile --warnings-as-errors
- run: mix compile --warnings-as-errors
env:
HUMAN_NAME_BUILD: 1
MIX_ENV: test

- name: Run Tests
run: HUMAN_NAME_BUILD=1 mix coveralls.github
env:
MIX_ENV: test
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 1a35f1b

Please sign in to comment.