Skip to content
This repository has been archived by the owner on Jan 30, 2024. It is now read-only.

Merge pull request #177 from niklaslong/dependabot/hex/ex_doc-0.31.1 #436

Merge pull request #177 from niklaslong/dependabot/hex/ex_doc-0.31.1

Merge pull request #177 from niklaslong/dependabot/hex/ex_doc-0.31.1 #436

Workflow file for this run

name: Elixir CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup elixir
uses: erlef/setup-beam@v1
with:
elixir-version: 1.14.x
otp-version: 25
- name: Install Dependencies
run: mix deps.get
- name: Run Tests
run: mix compile && mix test
- name: Check formatting
run: mix format --check-formatted