Skip to content

Bump styler from 0.11.9 to 1.2.1 #400

Bump styler from 0.11.9 to 1.2.1

Bump styler from 0.11.9 to 1.2.1 #400

Workflow file for this run

name: Elixir CI
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
build:
name: Build and test
runs-on: ubuntu-20.04
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
MIX_ENV: test
strategy:
matrix:
include:
- elixir: '1.13'
otp: '22.3'
- elixir: '1.18'
otp: '27.2'
steps:
- uses: actions/checkout@v4
- name: Set up Elixir
uses: erlef/setup-beam@v1
with:
elixir-version: ${{ matrix.elixir }}
otp-version: ${{ matrix.otp }}
- name: Restore dependency cache
uses: actions/[email protected]
id: deps-cache
with:
path: deps
key: ${{ runner.os }}-${{ matrix.otp }}-${{ matrix.elixir }}-mix-${{ hashFiles('**/mix.lock') }}
restore-keys: ${{ runner.os }}-${{ matrix.otp }}-${{ matrix.elixir }}-mix-
- name: Restore build cache
uses: actions/[email protected]
with:
path: _build
key: ${{ runner.os }}-${{ matrix.otp }}-${{ matrix.elixir }}-build-${{ hashFiles('**/mix.lock') }}
restore-keys: ${{ runner.os }}-${{ matrix.otp }}-${{ matrix.elixir }}-build-
- name: Restore plt cache
uses: actions/[email protected]
id: plt-cache
with:
path: priv/plts
key: ${{ runner.os }}-${{ matrix.otp }}-${{ matrix.elixir }}-plts-${{ hashFiles('**/mix.lock') }}
restore-keys: ${{ runner.os }}-${{ matrix.otp }}-${{ matrix.elixir }}-plts-
- name: Install dependencies
if: steps.deps-cache.outputs.cache-hit != 'true'
run: mix deps.get
- name: Compile application
run: mix compile --warnings-as-errors
- name: Run formatter
if: matrix.elixir == '1.18' && matrix.otp == '27.2'
run: mix format --check-formatted
- name: Create plts
if: steps.plt-cache.outputs.cache-hit != 'true'
run: |
mkdir -p priv/plts
mix dialyzer --plt
- name: Run static code analysis (dialyzer)
run: mix dialyzer --no-check
- name: Run static code analysis (credo)
run: mix credo --strict
- name: Run tests
run: mix test
- name: Run tests and coverage
if: matrix.elixir == '1.18' && matrix.otp == '27.2'
run: mix coveralls.github