Compare commits
1 commit
0be43f43ad
...
2574b9416d
| Author | SHA1 | Date | |
|---|---|---|---|
| 2574b9416d |
1 changed files with 9 additions and 0 deletions
|
|
@ -5,14 +5,23 @@ name: default
|
||||||
services:
|
services:
|
||||||
- name: postgres
|
- name: postgres
|
||||||
image: docker.io/library/postgres:17.2
|
image: docker.io/library/postgres:17.2
|
||||||
|
environment:
|
||||||
|
POSTGRES_USER: postgres
|
||||||
|
POSTGRES_PASSWORD: postgres
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: lint & test
|
- name: lint & test
|
||||||
image: docker.io/library/elixir:1.18.3-otp-27
|
image: docker.io/library/elixir:1.18.3-otp-27
|
||||||
|
environment:
|
||||||
|
MIX_ENV: test
|
||||||
commands:
|
commands:
|
||||||
# Install hex package manager
|
# Install hex package manager
|
||||||
- mix local.hex --force
|
- mix local.hex --force
|
||||||
|
# Fetch dependencies
|
||||||
|
- mix deps.get
|
||||||
# Check for compilation errors & warnings
|
# Check for compilation errors & warnings
|
||||||
- mix compile --warnings-as-errors
|
- mix compile --warnings-as-errors
|
||||||
# Check formatting
|
# Check formatting
|
||||||
- mix format --check-formatted
|
- mix format --check-formatted
|
||||||
|
# Run tests
|
||||||
|
- mix test
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue