Skip to content

Commit

Permalink
update action to run code and test seprately
Browse files Browse the repository at this point in the history
  • Loading branch information
ipranjal committed Sep 23, 2023
1 parent c7f4c11 commit 1489dc4
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/action_demo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,10 @@ jobs:
- run: echo "🍏 This job's status is ${{ job.status }}."
- name: Install dep
run: pip3 install --no-cache-dir -r requirements.txt
- name: Run test cases
- name: Run code
run: python3 digits.py
- name: Run test cases
run: python3 -m pytest
- run: echo "This statment is added to echo as part of quiz question 1"


0 comments on commit 1489dc4

Please sign in to comment.