Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
ci: [TT-412] adds ci workflow for time-tracker v1
  • Loading branch information
cristiantoaquiza committed Nov 18, 2021
commit 6b801cb93d7fb51f1085126d8fbca1bc709e1ac1
35 changes: 35 additions & 0 deletions .github/workflows/time-tracker-v1-workflow.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: Time Tacker V1 CI

on:
# rename to pull_request
push:
# rename to master
branches: [TT-412]

jobs:
time-tracker-ci:

runs-on: ubuntu-latest

strategy:
matrix:
python-version: [3.9]

steps:
- name: Checking out code from the repository
uses: actions/checkout@v2

- name: Setting up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}

- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements/time_tracker_api/dev.txt
pip install -r requirements/time_tracker_events/dev.txt

- name: Run tests
run: |
pytest tests