Skip to content

Update to Elixir 1.17 #1180

Update to Elixir 1.17

Update to Elixir 1.17 #1180

name: Elixir External Test
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-22.04
container:
image: hexpm/.github/workflows/elixir_test_external.yml
steps:
- name: Install git
run: |
apt-get update
apt-get install -y git
- name: Checkout repository and submodules
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29
with:
submodules: recursive
- name: Update submodules
run: |
git config --global --add safe.directory /__w/elixir-analyzer/elixir-analyzer
git submodule update --recursive --remote
- name: Install Dependencies
run: |
mix local.rebar --force
mix local.hex --force
mix deps.get
- name: Run Tests
run: mix test --only external