Skip to content

Commit 4773117

Browse files
author
Lorena Mesa
committed
Add missing jobs block in test github action runner
1 parent 71b5289 commit 4773117

File tree

3 files changed

+15
-139
lines changed

3 files changed

+15
-139
lines changed
Lines changed: 15 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,18 @@
11
name: Run tests and Commit
22
on: push
33

4-
steps:
5-
- uses: actions/checkout@v4
6-
- name: Set up Python
7-
uses: actions/setup-python@v5
8-
with:
9-
python-version: '3.10'
10-
- name: Install dependencies
11-
run: |
12-
python -m pip install --upgrade pip
13-
pip install -r requirements.txt
14-
- name: Test with unittest
15-
run: |
16-
python3 -m unittest test/sample_cases_test.py
4+
jobs:
5+
test:
6+
steps:
7+
- uses: actions/checkout@v4
8+
- name: Set up Python
9+
uses: actions/setup-python@v5
10+
with:
11+
python-version: '3.10'
12+
- name: Install dependencies
13+
run: |
14+
python -m pip install --upgrade pip
15+
pip install -r requirements.txt
16+
- name: Test with unittest
17+
run: |
18+
python3 -m unittest test/sample_cases_test.py

__init__.py

Whitespace-only changes.

main.py

Lines changed: 0 additions & 126 deletions
This file was deleted.

0 commit comments

Comments
 (0)