File tree Expand file tree Collapse file tree 1 file changed +35
-0
lines changed Expand file tree Collapse file tree 1 file changed +35
-0
lines changed Original file line number Diff line number Diff line change 1+ name : Time Tacker V1 CI
2+
3+ on :
4+ # rename to pull_request
5+ push :
6+ # rename to master
7+ branches : [TT-412]
8+
9+ jobs :
10+ time-tracker-ci :
11+
12+ runs-on : ubuntu-latest
13+
14+ strategy :
15+ matrix :
16+ python-version : [3.9]
17+
18+ steps :
19+ - name : Checking out code from the repository
20+ uses : actions/checkout@v2
21+
22+ - name : Setting up Python ${{ matrix.python-version }}
23+ uses : actions/setup-python@v2
24+ with :
25+ python-version : ${{ matrix.python-version }}
26+
27+ - name : Install dependencies
28+ run : |
29+ python -m pip install --upgrade pip
30+ pip install -r requirements/time_tracker_api/dev.txt
31+ pip install -r requirements/time_tracker_events/dev.txt
32+
33+ - name : Run tests
34+ run : |
35+ pytest tests
You can’t perform that action at this time.
0 commit comments