Skip to content

Commit

Permalink
Add missing jobs block in test github action runner
Browse files Browse the repository at this point in the history
  • Loading branch information
lorenanicole committed Jul 17, 2024
1 parent 71b5289 commit 4773117
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 139 deletions.
28 changes: 15 additions & 13 deletions .github/workflows/github-actions-tests.yml
Original file line number Diff line number Diff line change
@@ -1,16 +1,18 @@
name: Run tests and Commit
on: push

steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Test with unittest
run: |
python3 -m unittest test/sample_cases_test.py
jobs:
test:
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Test with unittest
run: |
python3 -m unittest test/sample_cases_test.py
Empty file removed __init__.py
Empty file.
126 changes: 0 additions & 126 deletions main.py

This file was deleted.

0 comments on commit 4773117

Please sign in to comment.