Skip to content

Commit

Permalink
fix dependencies path
Browse files Browse the repository at this point in the history
  • Loading branch information
afairless committed Apr 18, 2024
1 parent 7019337 commit 8bb9026
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# This workflow will install Python dependencies, run tests and lint with a single version of Python
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python

name: Simple Calculation with Unit Tests
name: Automatic Unit Tests

on:
push:
Expand Down Expand Up @@ -29,7 +29,7 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install flake8 pytest
if [ -f src/requirements.txt ]; then pip install -r src/requirements.txt; fi
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Lint with flake8
run: |
# stop the build if there are Python syntax errors or undefined names
Expand Down

0 comments on commit 8bb9026

Please sign in to comment.