Skip to content

Example has uppercase instead of lowercase function name #24

Example has uppercase instead of lowercase function name

Example has uppercase instead of lowercase function name #24

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- master
jobs:
mix_test:
name: mix test (Elixir ${{matrix.elixir}} | Erlang/OTP ${{matrix.otp}})
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
include:
- elixir: 1.11.1
otp: 21.3.8.17
warnings-as-errors: true
- elixir: 1.11.4
otp: 23.2
check_formatted: true
warnings-as-errors: true
- elixir: 1.12.0-rc.0
otp: 24.0-rc3
env:
MIX_ENV: test
steps:
- uses: actions/checkout@v2.3.2
- uses: actions/setup-elixir@v1.5.0
with:
otp-version: ${{matrix.otp}}
elixir-version: ${{matrix.elixir}}
experimental-otp: true
- name: Install packages
run: |
sudo apt-get install -y -qq inotify-tools
- name: Install Dependencies
run: |
mix local.hex --force
mix local.rebar --force
mix deps.get --only test
- run: mix format --check-formatted
if: matrix.check_formatted
- run: mix compile --warnings-as-errors
if: matrix.warnings_as_errors
- run: mix test