Skip to content
Prev Previous commit
TTA-139 making docker build and running tests
  • Loading branch information
Rodolfo committed Aug 21, 2022
commit b58bf3c2074e127c526561798223332c3fbaaffb
20 changes: 10 additions & 10 deletions .github/workflows/time-tracker-ui-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,17 +29,17 @@ jobs:
with:
ssh-private-key: ${{ secrets.INFRA_TERRAFORM_MODULES_SSH_PRIV_KEY }}

# - name: build docker
# run: make build
- name: build docker
run: make build

# - name: Running tests
# run: |
# chmod -R 777 ./$home
# make test
# - name: Generate coverage report
# env:
# CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
# run: bash <(curl -s https://codecov.io/bash)
- name: Running tests
run: |
chmod -R 777 ./$home
make test
- name: Generate coverage report
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
run: bash <(curl -s https://codecov.io/bash)

- name: Setup terraform
uses: hashicorp/setup-terraform@v1
Expand Down