Merge branch 'master' into backend

This commit is contained in:
s460930 2020-11-30 23:22:15 +01:00
commit fb19e6ec6a
2 changed files with 12 additions and 1 deletions

2
.gitignore vendored
View File

@ -1,3 +1,3 @@
.idea/
*.iml
.idea
.idea

11
Jenkinsfile vendored Normal file
View File

@ -0,0 +1,11 @@
pipeline {
agent any
stages {
stage('Test') {
steps {
echo 'Test pipeline'
}
}
}
}