Skip to content

feat: renames mix task blend.premix to blend.gen.premix #172

feat: renames mix task blend.premix to blend.gen.premix

feat: renames mix task blend.premix to blend.gen.premix #172

Workflow file for this run

name: CI
on:
pull_request:
push:
jobs:
main:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
include:
- elixir_version: '1.17'
otp_version: '27.0'
lint: true
- elixir_version: '1.16'
otp_version: '26.2.5'
- elixir_version: '1.15'
otp_version: '25.3.2.12'
- elixir_version: '1.14'
otp_version: '24.3.4.17'
- elixir_version: '1.13'
otp_version: '24.3.4.17'
steps:
- uses: actions/checkout@v4
- uses: erlef/setup-beam@v1
with:
otp-version: ${{matrix.otp_version}}
elixir-version: ${{matrix.elixir_version}}
- run: mix deps.get --check-locked
- run: mix format --check-formatted
if: ${{ matrix.lint }}
- run: mix deps.unlock --check-unused
if: ${{ matrix.lint }}
- run: mix deps.compile
- run: mix compile --warnings-as-errors
if: ${{ matrix.lint }}
- run: mix test