This repository has been archived by the owner on Jan 30, 2024. It is now read-only.
build(deps): bump mint from 1.5.1 to 1.5.2 #430
Workflow file for this run
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 |