10 lines
206 B
YAML
10 lines
206 B
YAML
kind: pipeline
|
|
type: docker
|
|
name: default
|
|
|
|
steps:
|
|
- name: lint & test
|
|
image: docker.io/elixir:1.18.3-otp-27
|
|
commands:
|
|
- mix compile --warnings-as-errors
|
|
- mix format --check-formatted
|