Skip to content

Commit f157fd6

Browse files
Create first-action.yml
1 parent 2928819 commit f157fd6

1 file changed

Lines changed: 17 additions & 0 deletions

File tree

.github/workflows/first-action.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: My First Github Actions
2+
3+
on: [push]
4+
5+
jobs:
6+
test:
7+
runs-on: ubutnu-latest
8+
steps:
9+
- name: Checkout Repository
10+
uses: actions/checkout@v4
11+
- name: Set up Python
12+
uses: actions/setup-python@v4
13+
with:
14+
python-version: '3.x'
15+
- name: Run Test
16+
run: python test.py
17+

0 commit comments

Comments
 (0)