Skip to content

changelog and bump version to 0.11.0 #53

changelog and bump version to 0.11.0

changelog and bump version to 0.11.0 #53

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: ['22.0']
elixir: ['1.12']
steps:
- uses: actions/checkout@v4
- uses: erlef/setup-beam@v1
with:
otp-version: ${{matrix.otp}}
elixir-version: ${{matrix.elixir}}
- name: Install FFmpeg
run: |
sudo apt-get update -qq
sudo apt-get install -qq ffmpeg
- run: mix deps.get
- run: mix test