Bump actions/cache from 4.0.2 to 4.1.2 #1204
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Elixir External Test | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-22.04 | |
container: | |
image: hexpm/elixir:1.17.0-erlang-27.0-debian-bookworm-20240612 | |
steps: | |
- name: Install git | |
run: | | |
apt-get update | |
apt-get install -y git | |
- name: Checkout repository and submodules | |
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 | |
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 |