From b813126a9ccfed3f0faf8c1d5dac2195c8988150 Mon Sep 17 00:00:00 2001 From: Miguel Palhas Date: Mon, 30 Nov 2020 22:31:21 +0000 Subject: [PATCH] Setting up elixir with action --- .github/workflows/test.yml | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index fc99e67..cc85b58 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -15,14 +15,13 @@ jobs: matrix: elixir: ['1.8', '1.9', '1.10', '1.11'] - runs-on: ubuntu-latest - container: - image: elixir:${{ matrix.elixir }}-alpine - env: - MIX_ENV: test - steps: - uses: actions/checkout@v2 + - uses: actions/setup-elixir@v1 + with: + otp-version: '22.3.4' + elixir-version: ${{ matrix.elixir }} + - uses: actions-rs/toolchain@v1 with: toolchain: stable