Skip to content
This repository has been archived by the owner on Aug 22, 2024. It is now read-only.

Bump ecto_sql from 3.5.4 to 3.11.0 #14

Bump ecto_sql from 3.5.4 to 3.11.0

Bump ecto_sql from 3.5.4 to 3.11.0 #14

Workflow file for this run

name: Test suite
on:
push:
branches:
- master
pull_request:
jobs:
test:
runs-on: ubuntu-latest
env:
MIX_ENV: test
strategy:
matrix:
include:
- pair:
elixir: '1.7'
otp: '20.3'
- pair:
elixir: '1.11'
otp: '23.2'
check_format: true
name: elixir-${{ matrix.pair.elixir }}-otp-${{ matrix.pair.otp }}
steps:
- uses: actions/checkout@v2
- uses: erlef/setup-elixir@v1
with:
otp-version: ${{matrix.pair.otp}}
elixir-version: ${{matrix.pair.elixir}}
- name: Install Dependencies
run: |
mix local.rebar --force
mix local.hex --force
mix deps.get --only test
- name: Check format
if: matrix.check_format
run: mix format --check-formatted
- name: Run Tests
run: mix test