update deps; Req
changed errors (#85)
#32
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: Check Elixir format | |
on: push | |
jobs: | |
build: | |
name: Check Elixir format | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Elixir | |
uses: erlef/setup-beam@v1 | |
with: | |
elixir-version: "1.16" | |
otp-version: "26" | |
- name: Install dependencies | |
run: mix deps.get | |
- name: Check format | |
run: mix format --check-formatted |