Refactor for flask

This commit is contained in:
Stephen
2020-06-01 14:31:12 -07:00
parent ef0961402d
commit 182926af1b
252 changed files with 25897 additions and 15 deletions

43
Vapor3.1.10/circle.yml Normal file
View File

@@ -0,0 +1,43 @@
version: 2
jobs:
linux:
docker:
- image: swift:4.1
steps:
- checkout
- run:
name: Compile code
command: swift build
- run:
name: Run unit tests
command: swift test
linux-release:
docker:
- image: swift:4.1
steps:
- checkout
- run:
name: Compile code with optimizations
command: swift build -c release
workflows:
version: 2
tests:
jobs:
- linux
- linux-release
nightly:
triggers:
- schedule:
cron: "0 0 * * *"
filters:
branches:
only:
- master
jobs:
- linux
- linux-release