16 lines
328 B
YAML
16 lines
328 B
YAML
# Always run build and unit tests
|
|
steps:
|
|
- name: build
|
|
image: git.firechicken.net/fedichat/rust_builder:latest
|
|
pull: true
|
|
commands:
|
|
- cargo build
|
|
depends_on: []
|
|
|
|
- name: test
|
|
image: git.firechicken.net/fedichat/rust_builder:latest
|
|
pull: true
|
|
commands:
|
|
- cargo test
|
|
depends_on: []
|