Skip to content

Bump the deps group across 1 directory with 3 updates #51

Bump the deps group across 1 directory with 3 updates

Bump the deps group across 1 directory with 3 updates #51

Workflow file for this run

name: Elixir CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
permissions:
contents: read
jobs:
build:
name: Build and test
runs-on: ubuntu-20.04
strategy:
fail-fast: false
matrix:
include:
- pair:
elixir: '1.13'
otp: '23.3'
- pair:
elixir: '1.17'
otp: '27.0'
lint: lint
steps:
- uses: actions/checkout@v4
- name: Set up Elixir
uses: erlef/setup-beam@v1
with:
elixir-version: ${{ matrix.pair.elixir }}
otp-version: ${{ matrix.pair.otp }}
- name: Restore dependencies cache
uses: actions/cache@v4
with:
path: |
deps
_build
key: ${{ runner.os }}-mix-${{matrix.pair.elixir}}-${{matrix.pair.otp}}-${{ hashFiles('**/mix.lock') }}
restore-keys: |
${{ runner.os }}-mix-${{matrix.pair.elixir}}-${{matrix.pair.otp}}-
- name: Run mix deps.get
run: mix deps.get
- name: Run mix format
run: mix format --check-formatted
if: ${{ matrix.lint }}
- name: Run mix deps.unlock
run: mix deps.unlock --check-unused
if: ${{ matrix.lint }}
- name: Run mix deps.compile
run: mix deps.compile
- name: Run mix compile
run: mix compile --warnings-as-errors
if: ${{ matrix.lint }}
- name: Run mix test
run: mix test
- name: Run credo
run: mix credo --strict
if: ${{ matrix.lint }}