Files
uelen e7829a714b
ci/woodpecker/push/all_push Pipeline was successful
ci/woodpecker/push/master_push Pipeline was successful
Got CI working
Right now there are a few unit tests and the CI also ensures that the
project builds
2026-06-03 17:27:08 -07:00

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: []