Skip to content

Commit d291fab

Browse files
authored
Update main.yml
1 parent 8b6d699 commit d291fab

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

.github/workflows/main.yml

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,17 @@ jobs:
2020
with:
2121
python-version: '3.11'
2222

23+
- name: Run Values for encoding
24+
run: |
25+
cat <<EOF > Input.txt
26+
encode
27+
Hello World!
28+
EOF
29+
2330
- name: Run Binary Encoder
2431
run: |
25-
echo "encode\n"
26-
echo "Hello World!" | python binarypy.py
32+
python binarypy.py < Input.txt >> encode_output.txt
33+
2734
2835
2936

0 commit comments

Comments
 (0)