Compare commits
1 Commits
main
...
89958b0fa0
Author | SHA1 | Date | |
---|---|---|---|
|
89958b0fa0 |
10
.woodpecker/.all-checks-complete.yml
Normal file
10
.woodpecker/.all-checks-complete.yml
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
steps:
|
||||||
|
echo:
|
||||||
|
image: alpine
|
||||||
|
commands:
|
||||||
|
- echo "All required checks complete"
|
||||||
|
|
||||||
|
depends_on:
|
||||||
|
- build
|
||||||
|
|
||||||
|
skip_clone: true
|
15
.woodpecker/.build.yml
Normal file
15
.woodpecker/.build.yml
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
steps:
|
||||||
|
build:
|
||||||
|
image: nixos/nix
|
||||||
|
commands:
|
||||||
|
- echo 'experimental-features = flakes nix-command' >> /etc/nix/nix.conf
|
||||||
|
# Lint
|
||||||
|
- "nix flake check"
|
||||||
|
# Test
|
||||||
|
- nix develop --command dotnet test
|
||||||
|
- nix develop --command dotnet test --configuration Release
|
||||||
|
|
||||||
|
when:
|
||||||
|
- event: "push"
|
||||||
|
evaluate: 'CI_COMMIT_BRANCH == CI_REPO_DEFAULT_BRANCH'
|
||||||
|
- event: "pull_request"
|
Reference in New Issue
Block a user