diff --git a/.circleci/config.yml b/.circleci/config.yml new file mode 100644 index 00000000..e66d51ee --- /dev/null +++ b/.circleci/config.yml @@ -0,0 +1,15 @@ +version: 2.1 +orbs: + gradle: circleci/gradle@3.0.0 +executors: + machine_executor_amd64: + machine: + image: ubuntu-2204:2022.04.2 + environment: + architecture: "amd64" + platform: "linux/amd64" +workflows: + gradle_test: + jobs: + - gradle/test: + executor: machine_executor_amd64 \ No newline at end of file diff --git a/.vscode/launch.json b/.vscode/launch.json index c32b04e0..8d92e678 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -9,13 +9,10 @@ "name": "TestMFScreenerApplication", "request": "launch", "mainClass": "com.example.mfscreener.TestMFScreenerApplication", - "projectName": "mfscreener" - }, - { - "type": "java", - "name": "Launch Current File", - "request": "launch", - "mainClass": "${file}" + "projectName": "mfscreener", + "sourcePaths": [ + "${workspaceFolder}/build/generated/" + ] }, { "type": "java", @@ -25,7 +22,8 @@ "projectName": "mfscreener", "sourcePaths": [ "${workspaceFolder}/build/generated/" - ] + ], + "args": "--spring.profiles.active=local" } ] } \ No newline at end of file