🐛 fix collect #26
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: run-test-suite | |
on: [push] | |
jobs: | |
test-suite: | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout@scm | |
uses: actions/checkout@main | |
- name: setup@elixir | |
uses: erlef/setup-beam@main | |
with: | |
otp-version: '24.x' | |
elixir-version: '1.12.x' | |
- name: deps@mix | |
run: mix deps.get | |
- name: compile@mix | |
run: mix compile | |
- name: lint@mix | |
run: mix credo --all | |
- name: test@mix | |
run: mix test --cover |