Skip to content

Commit

Permalink
Update main.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
codewithnick authored Jul 12, 2023
1 parent f0a7b10 commit 9a2a134
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,19 +5,17 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: setup python
uses: actions/setup-python@v4
with:
python-version: '3.10' # install the python version needed

- name: Install dependencies
run: |
cd $GITHUB_WORKSPACE
pwd
ls
pip install -r requirements.txt
uses: py-actions/py-dependency-install@v4
with:
path: "requirements.txt"

- name: run tests # run main.py
working-directory: tests
run: python -m unittest discover

0 comments on commit 9a2a134

Please sign in to comment.