Skip to content

refactor: isolate MissAV metadata fallback #217

refactor: isolate MissAV metadata fallback

refactor: isolate MissAV metadata fallback #217

Workflow file for this run

name: Elixir Test
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Checkout code
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Set up Elixir
uses: erlef/setup-beam@8d44588995e53ce789721e96227122a67826542d # v1.24.0
with:
elixir-version: "1.17"
otp-version: "27.0"
- name: Cache dependencies
uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
with:
path: deps
key: ${{ runner.os }}-mix-${{ hashFiles('mix.lock') }}
restore-keys: |
${{ runner.os }}-mix-
- name: Install dependencies
run: |
mix local.hex --force
mix local.rebar --force
mix deps.get
- name: Run tests
run: mix test