Skip to content

Bump ex_aws from 2.5.4 to 2.5.5 #208

Bump ex_aws from 2.5.4 to 2.5.5

Bump ex_aws from 2.5.4 to 2.5.5 #208

Workflow file for this run

name: on-push
on: [push, pull_request]
env:
MIX_ENV: test
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
jobs:
build:
runs-on: ubuntu-20.04
strategy:
matrix:
otp: ["23.3.4.6"]
elixir: ["1.10.4", "1.11.4", "1.12.3", "1.13.4", "1.14.2"]
steps:
- uses: actions/checkout@v2
- uses: erlef/setup-beam@v1
with:
otp-version: ${{matrix.otp}}
elixir-version: ${{matrix.elixir}}
version-type: strict
- run: mix deps.get
- run: mix compile
- run: mix format --check-formatted
if: matrix.elixir == '1.14.2' # Only check formatting with the latest verison
- run: mix dialyzer
if: matrix.elixir == '1.14.2'
- run: mix test