chore(deps): Bump vix from 0.31.1 to 0.33.0 #393
Workflow file for this run
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 CI | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build: | |
name: Build and test | |
runs-on: ubuntu-latest | |
services: | |
postgres: | |
image: postgres:12 | |
ports: ['5432:5432'] | |
env: | |
POSTGRES_PASSWORD: postgres | |
options: >- | |
--health-cmd pg_isready | |
--health-interval 10s | |
--health-timeout 5s | |
--health-retries 5 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Elixir | |
uses: erlef/setup-beam@v1 | |
with: | |
elixir-version: '1.16.0' # Define the elixir version [required] | |
otp-version: '26.2.1' # Define the OTP version [required] | |
- name: Installing ffmpeg | |
uses: FedericoCarboni/setup-ffmpeg@v3 | |
# Needed because of `ubuntu-latest` migration removed `libmagic-dev`. | |
# https://www.yellowduck.be/posts/github-actions-will-update-ubuntu-latest-to-ubuntu-24-04?t | |
- name: Install libmagic-dev | |
run: sudo apt-get update && sudo apt-get install -y libmagic-dev | |
- name: Restore dependencies cache | |
uses: actions/cache@v2 | |
with: | |
path: deps | |
key: ${{ runner.os }}-mix-${{ hashFiles('**/mix.lock') }} | |
restore-keys: ${{ runner.os }}-mix- | |
- name: Install dependencies | |
run: mix deps.get | |
- name: Run Tests | |
run: mix coveralls.json | |
env: | |
MIX_ENV: test | |
- name: Upload coverage to Codecov | |
uses: codecov/codecov-action@v1 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} |