ci: first attempt at build and testing pipeline

This commit is contained in:
Mikolaj Wielgus 2024-05-24 23:27:55 +02:00
parent 06150f5167
commit fd969bcf24
1 changed files with 11 additions and 0 deletions

11
.woodpecker/build.yml Normal file
View File

@ -0,0 +1,11 @@
matrix:
RUST: [stable, beta, nightly]
steps:
test:
image: rust
environment: [CARGO_TERM_COLOR=always]
commands:
- rustup default $RUST
- cargo check
- cargo test