Skip to content

Bump actions/checkout from 5.0.0 to 6.0.0 #1271

Bump actions/checkout from 5.0.0 to 6.0.0

Bump actions/checkout from 5.0.0 to 6.0.0 #1271

name: Elixir External Test
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-24.04
container:
image: hexpm/elixir:1.19.4-erlang-28.1-debian-bookworm-20251117
steps:
- name: Install git
run: |
apt-get update
apt-get install -y git
- name: Checkout repository and submodules
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3
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