2024-03-09 22:28:28 +00:00
|
|
|
steps:
|
|
|
|
build:
|
|
|
|
when:
|
|
|
|
- event: cron
|
|
|
|
- event: push
|
|
|
|
branch: main
|
|
|
|
- event: pull_request
|
2024-03-10 10:23:05 +00:00
|
|
|
image: docker.io/rust:latest
|
2024-03-09 22:28:28 +00:00
|
|
|
commands:
|
|
|
|
- apt-get install libssl-dev
|
|
|
|
- cargo build
|
|
|
|
test:
|
|
|
|
when:
|
|
|
|
- event: cron
|
|
|
|
- event: push
|
|
|
|
branch: main
|
|
|
|
- event: pull_request
|
2024-03-10 10:23:05 +00:00
|
|
|
image: docker.io/rust:latest
|
2024-03-09 22:28:28 +00:00
|
|
|
commands:
|
|
|
|
- cargo test
|