Skip to content

Commit

Permalink
check for correct python & node
Browse files Browse the repository at this point in the history
  • Loading branch information
currymike123 committed Feb 28, 2024
1 parent f90ee80 commit e1bf9ba
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
@@ -1,15 +1,13 @@
name: Bacic Test
name: Test1

on: [push]

jobs:
test:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Run test.py
- name: Setup Python
uses: actions/setup-python@v3
with:
python-version: '3.x'
Expand All @@ -19,7 +17,8 @@ jobs:
pip install -r requirements.txt
- name: Run tests
run: |
python -m test1.py
python -m unittest test1.py
# name: Bacic Test: This is the name of your workflow. It's displayed on GitHub when the actions are running.
# on: [push]: This specifies the event that triggers the workflow. In this case, the workflow runs whenever a push is made to the repository.
Expand Down

0 comments on commit e1bf9ba

Please sign in to comment.