blog/.drone.yml
Dominic Grimm bb186a0f7d
Some checks reported errors
continuous-integration/drone/push Build was killed
Update ci
2023-02-12 11:22:59 +01:00

25 lines
438 B
YAML

kind: pipeline
type: docker
name: default
steps:
- name: test
image: docker.io/rust:1.67-alpine
commands:
- cd ./backend
- cargo test --verbose --all
- name: build
image: docker.io/tmaier/docker-compose
volumes:
- name: dockersock
path: /var/run/docker.sock
commands:
- make ci
depends_on:
- test
volumes:
- name: dockersock
host:
path: /var/run/docker.sock