Skip to content

Commit 6677c2a

Browse files
authored
Create main.yml
1 parent e197fe3 commit 6677c2a

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

.github/workflows/main.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: Binary Encoder/Decoder Build and Run
2+
3+
on:
4+
push:
5+
paths:
6+
- '**/*.py'
7+
- '**/*.yml'
8+
workflow_dispatch:
9+
10+
jobs:
11+
run-binary-py:
12+
runs-on: ubuntu-latest
13+
14+
steps:
15+
- name: Checkout Code
16+
uses: actions/checkout@v4
17+
18+
- name: Setup Python
19+
uses: actions/setup-python@v5
20+
with:
21+
python-version: '3.11'
22+
23+
- name: Run Binary Encoder
24+
run: |
25+
echo -e "Hello World!\n" | python binary.py
26+
27+
28+

0 commit comments

Comments
 (0)