Skip to content

ci: update to ubuntu 20.04 (was 18.04) #18

ci: update to ubuntu 20.04 (was 18.04)

ci: update to ubuntu 20.04 (was 18.04) #18

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@v2
- uses: erlef/setup-beam@v1
with:
otp-version: ${{matrix.otp}}
elixir-version: ${{matrix.elixir}}
- name: Install ImageMagick and FFmpeg
run: |
sudo apt-get install -qq imagemagick ffmpeg
- run: mix deps.get
- run: mix test