Skip to content

Commit f38e8d7

Browse files
committed
naming
1 parent 31d7519 commit f38e8d7

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.circleci/config.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ version: 2.1
55
# Define a job to be invoked later in a workflow.
66
# See: https://circleci.com/docs/2.0/configuration-reference/#jobs
77
jobs:
8-
say-hello:
8+
red-wine-quality:
99
# Specify the execution environment. You can specify an image from Dockerhub or use one of our Convenience Images from CircleCI's Developer Hub.
1010
# See: https://circleci.com/docs/2.0/configuration-reference/#docker-machine-macos-windows-executor
1111
docker:
@@ -15,12 +15,12 @@ jobs:
1515
steps:
1616
- checkout
1717
- run:
18-
name: "Red Wine Quality"
18+
name: "Train and predict"
1919
command: "bash docker/entrypoint.sh psql -U root -p 5432 -h 127.0.0.1 -f sql/test.sql"
2020

2121
# Invoke jobs via workflows
2222
# See: https://circleci.com/docs/2.0/configuration-reference/#workflows
2323
workflows:
24-
say-hello-workflow:
24+
end-to-end-tests:
2525
jobs:
26-
- say-hello
26+
- red-wine-quality

0 commit comments

Comments
 (0)