All checks were successful
NeoVim tests / code-quality (push) Successful in 1m16s
18 lines
378 B
YAML
18 lines
378 B
YAML
when:
|
|
- event: push
|
|
|
|
steps:
|
|
- name: build-image
|
|
image: docker
|
|
commands:
|
|
- docker build --rm -t jrop/u.nvim .
|
|
volumes:
|
|
- /var/run/docker.sock:/var/run/docker.sock
|
|
|
|
- name: build
|
|
image: jrop/u.nvim
|
|
commands:
|
|
- nix-shell --pure --run 'make lint'
|
|
- nix-shell --pure --run 'make fmt-check'
|
|
- nix-shell --pure --run 'make test'
|