Skip to content

Commit d08b88e

Browse files
committedMar 17, 2025·
Create main.yaml
1 parent 1d87482 commit d08b88e

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed
 

‎.github/workflows/main.yaml

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: Python package
2+
on: [push]
3+
jobs:
4+
build:
5+
runs-on: ubuntu-latest
6+
steps:
7+
- uses: actions/checkout@v3
8+
with:
9+
fetch-depth: 0
10+
- name: Setup Python
11+
uses: actions/setup-python@v4
12+
with:
13+
python-version: "3.9"
14+
- name: Install packages
15+
run: pip install -r requirements.txt
16+
- name: Run tests
17+
run: python myscript.py

0 commit comments

Comments
 (0)
Please sign in to comment.