Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions .github/workflows/docker-image.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Docker Image CI

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]

jobs:

build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Build the Docker image
run: docker build . --file Dockerfile --tag my-image-name:$(date +%s)
11 changes: 9 additions & 2 deletions main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,16 @@ int main(){
if( input.size() != RGB_HEX_LENGTH ){
cout << "Please enter the color in hexadecimal format, starting with # followed by six hex values\n";
}
}while( input.size() != RGB_HEX_LENGTH );
//Check if input is # using ASCII value
if (input[0] != 35)
{
cout << "Please enter the color in hexadecimal format, starting with # followed by six hex values\n";
}
}
//Check if input is appropriate size then output response
while( input.size() == RGB_HEX_LENGTH );

cout << "Your hex color is: " << input << endl;

return 0;
}
}