Update testCases.yml #129
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: GitHub Actions Demo | |
on: [push] | |
jobs: | |
build : | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: install python | |
uses : actions/setup-python@v1 | |
with : | |
python-version : 3.x | |
- name : install dependencies | |
run : | | |
python -m pip install --upgrade pip | |
- name : run test cases of create function | |
run : python tests\test_cases_create.py | |
- name : run test cases of set function | |
run : python tests\test_cases_set.py | |
- name : run test cases of get function | |
run : python tests\test_cases_get.py | |
- name : run test cases of delete function | |
run : python tests\test_cases_delete.py | |