Gruhit Patel commited on
Commit
9cf63b8
·
1 Parent(s): b55a71b

named actions

Browse files
Files changed (1) hide show
  1. .github/workflows/test.yml +7 -5
.github/workflows/test.yml CHANGED
@@ -10,9 +10,11 @@ jobs:
10
  runs-on: ubuntu-latest
11
 
12
  steps:
13
- - uses: actions/checkout@v2
 
14
 
15
- - uses: actions/setup-python@v2
 
16
  with:
17
  python-version: '3.9'
18
 
@@ -20,6 +22,6 @@ jobs:
20
  run: |
21
  python -m pip install --upgrade pip
22
  pip install -r requirement.txt
23
-
24
- - run: |
25
- pytest
 
10
  runs-on: ubuntu-latest
11
 
12
  steps:
13
+ - name: Perform checkout
14
+ uses: actions/checkout@v2
15
 
16
+ - name: Set up python to perform testing
17
+ uses: actions/setup-python@v2
18
  with:
19
  python-version: '3.9'
20
 
 
22
  run: |
23
  python -m pip install --upgrade pip
24
  pip install -r requirement.txt
25
+
26
+ - name: Run the testing
27
+ run: pytest