You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
565 B
18 lines
565 B
2 years ago
|
kind: pipeline
|
||
|
name: tests
|
||
|
|
||
|
steps:
|
||
|
# Tests ordered from quickest to slowest so failed builds fail quickly
|
||
|
- name: minimum-test
|
||
|
image: rust:1
|
||
|
commands:
|
||
|
- cargo test --no-default-features --features scgi_srv
|
||
|
- name: scgi-test
|
||
|
image: rust:1
|
||
|
commands:
|
||
|
- cargo test --no-default-features --features scgi_srv,user_management_advanced,user_management_routes,serve_dir,ratelimiting
|
||
|
- name: gemini-test
|
||
|
image: rust:1
|
||
|
commands:
|
||
|
- cargo test --features user_management_advanced,user_management_routes,serve_dir,ratelimiting
|