Skip to content

Merge pull request #127 from orbit-apps/dependabot/hex/dialyxir-1.4.7 #267

Merge pull request #127 from orbit-apps/dependabot/hex/dialyxir-1.4.7

Merge pull request #127 from orbit-apps/dependabot/hex/dialyxir-1.4.7 #267

Workflow file for this run

on: push
name: Continuous Integration
jobs:
test:
runs-on: ubuntu-latest
env:
MIX_ENV: test
steps:
- uses: actions/checkout@v5
- name: Cache dialyzer plts
uses: actions/cache@v4
with:
path: priv/plts
key: ${{runner.os}}-${{hashFiles('**/.tool-versions')}}-plts
- uses: erlef/setup-elixir@v1
with:
version-file: ".tool-versions"
version-type: "strict"
- name: Deps get
run: mix deps.get
- name: Check Credo
run: mix credo
- name: Check Formatting
run: mix format --check-formatted
- name: Run Tests
run: mix do compile --warnings-as-errors, test
- name: Dialyzer
run: mix dialyzer