Gave all modules own directory; added test CI pipeline

This commit is contained in:
Jef Roosens 2022-04-10 16:48:37 +02:00
parent 6d60ea1538
commit f92a20fcf8
Signed by untrusted user: Jef Roosens
GPG key ID: B75D4F293C7052DB
8 changed files with 27 additions and 8 deletions

View file

@ -5,7 +5,7 @@ import datatypes
import time
struct ScheduledBuild {
repo git.GitRepo
repo git.GitRepo
timestamp time.Time
}
@ -27,6 +27,6 @@ pub fn cron(conf Config) ? {
// }
// println(queue)
exp := "10/2 5 *"
exp := '10/2 5 *'
println(parse_expression(exp) ?)
}