25 lines
276 B
YAML
25 lines
276 B
YAML
stages:
|
|
- check
|
|
- build
|
|
|
|
check:
|
|
stage: check
|
|
tags:
|
|
- nix
|
|
script:
|
|
- nix develop -c pre-commit run --all-files
|
|
|
|
build:
|
|
stage: build
|
|
tags:
|
|
- nix
|
|
script:
|
|
- nix build
|
|
|
|
test:
|
|
stage: build
|
|
tags:
|
|
- nix
|
|
script:
|
|
- nix develop -c cargo test
|