Skip to content

added elixir CI test based on expublish workflow #1

added elixir CI test based on expublish workflow

added elixir CI test based on expublish workflow #1

Workflow file for this run

name: Elixir CI
on:
push:
branches: [master, ci]
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.8'
otp: '22.3'
- elixir: '1.13'
otp: '24.3'
- elixir: '1.14'
otp: '25.2'
steps:
- uses: actions/checkout@v3
- name: Set up Elixir
uses: erlef/setup-beam@v1
with:
elixir-version: ${{ matrix.elixir }}
otp-version: ${{ matrix.otp }}
# - name: Restore dependency cache
# uses: actions/cache@v3.3.1
# 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/cache@v3.3.1
# 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/cache@v3.3.1
# 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
# - 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.14' && matrix.otp == '25.2'
run: mix coveralls.github