Skip to content

Commit dfc3da0

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

File tree

3 files changed

+16
-139
lines changed

3 files changed

+16
-139
lines changed
Lines changed: 16 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,19 @@
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+
runs-on: ubuntu-latest
7+
steps:
8+
- uses: actions/checkout@v4
9+
- name: Set up Python
10+
uses: actions/setup-python@v5
11+
with:
12+
python-version: '3.10'
13+
- name: Install dependencies
14+
run: |
15+
python -m pip install --upgrade pip
16+
pip install -r requirements.txt
17+
- name: Test with unittest
18+
run: |
19+
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)