build: Fix van Jenkinsfile check
gitea/double-pendulum/pipeline/head This commit looks good

This commit is contained in:
2026-09-05 15:27:50 +02:00
parent abcdfc8b00
commit fbd8c9f990
Vendored
+5 -3
View File
@@ -1,10 +1,12 @@
pipeline {
agent any
stages {
stage('Check') {
sh 'cargo check'
}
stage('Check') {
steps {
sh 'cargo check'
}
}
}
post {
cleanup {
cleanWs()