Skip to content

Bump actions/checkout from 4.1.4 to 4.1.5 #1171

Bump actions/checkout from 4.1.4 to 4.1.5

Bump actions/checkout from 4.1.4 to 4.1.5 #1171

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