From fe8bdc1ef32c76fe2f2793eaab5680081c9c1673 Mon Sep 17 00:00:00 2001 From: Marcel Otto Date: Thu, 18 Mar 2021 22:50:28 +0100 Subject: [PATCH] Back to dev as default environment on CI --- .github/workflows/ci.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index abc856f..0ab0a2a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -10,7 +10,6 @@ jobs: test: runs-on: ubuntu-16.04 env: - MIX_ENV: test GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} strategy: fail-fast: false @@ -41,7 +40,7 @@ jobs: elixir-version: ${{matrix.pair.elixir}} - name: Install Dependencies - run: mix deps.get --only test + run: mix deps.get - run: mix format --check-formatted if: ${{ matrix.lint }} @@ -54,7 +53,7 @@ jobs: - run: mix compile --warnings-as-errors if: ${{ matrix.lint }} - - run: mix coveralls.github + - run: MIX_ENV=test mix coveralls.github - name: Retrieve PLT Cache uses: actions/cache@v1 @@ -70,4 +69,4 @@ jobs: mix dialyzer --plt - name: Run dialyzer - run: MIX_ENV=dev mix dialyzer --no-check + run: mix dialyzer --no-check