Skip to content

Commit 3e2f2a5

Browse files
committed
Add workflows
1 parent 64fa48e commit 3e2f2a5

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed

.github/workflows/main.yml

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: Pipeline
2+
on: [pull_request, push]
3+
jobs:
4+
lint:
5+
runs-on: ubuntu-latest # operating system your code will run on
6+
steps:
7+
- uses: actions/checkout@v4
8+
- uses: actions/setup-python@v5
9+
with:
10+
python-version: '3.10'
11+
- run: echo "Linting the app"
12+
13+
test:
14+
runs-on: ubuntu-latest
15+
steps:
16+
- uses: actions/checkout@v4
17+
- uses: actions/setup-python@v5
18+
with:
19+
python-version: '3.10'
20+
- run: echo "Testing the app"
21+
22+
build:
23+
runs-on: ubuntu-latest
24+
steps:
25+
- uses: actions/checkout@v4
26+
- uses: actions/setup-python@v5
27+
with:
28+
python-version: '3.10'
29+
- run: echo "Building the app"

0 commit comments

Comments
 (0)