Skip to content

Update thumbnex.ex (#17) #22

Update thumbnex.ex (#17)

Update thumbnex.ex (#17) #22

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-20.04
name: OTP ${{matrix.otp}} / Elixir ${{matrix.elixir}}
strategy:
matrix:
otp: ['20.0']
elixir: ['1.9.4']
steps:
- uses: actions/checkout@v4
- uses: erlef/setup-beam@v1
with:
otp-version: ${{matrix.otp}}
elixir-version: ${{matrix.elixir}}
- name: Install ImageMagick and FFmpeg
run: |
sudo apt-get update -qq
sudo apt-get install -qq imagemagick ffmpeg
- run: mix deps.get
- run: mix test