This repository has been archived by the owner on Jan 30, 2024. It is now read-only.
Merge pull request #167 from niklaslong/dependabot/hex/ex_doc-0.30.6 #416
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |