Skip to content

Add docker build

Add docker build #7

Workflow file for this run

name: CI
on:
push:
jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: erlef/setup-beam@a6e26b22319003294c58386b6f25edbc7336819a # v1.18.0
with:
otp-version: 26
elixir-version: 1.17
- run: mix format --check-formatted
- run: mix deps.get
- run: mix compile --warnings-as-errors
docker:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: erlef/setup-beam@a6e26b22319003294c58386b6f25edbc7336819a # v1.18.0
with:
otp-version: 26
elixir-version: 1.17
- run: mix format --check-formatted
- run: mix deps.get
- run: mix compile --warnings-as-errors