Skip to content

Commit 271a410

Browse files
committed
ci: Fixes gitaction workflows
1 parent 4e6653e commit 271a410

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

.github/workflows/python-app.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# This workflow will install Python dependencies, run tests and lint with a single version of Python
22
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
33

4-
name: Python testing
4+
name: Python
55

66
on:
77
push:
@@ -11,7 +11,7 @@ on:
1111

1212
jobs:
1313
unit_testing:
14-
14+
name: Test
1515
runs-on: ubuntu-latest
1616

1717
steps:
@@ -27,3 +27,6 @@ jobs:
2727
- name: Run tests
2828
run: |
2929
./run_tests.sh
30+
- name: Upload coverage to Codacy
31+
run: export CODACY_PROJECT_TOKEN=${{ secrets.CODACY_PROJECT_TOKEN }} && bash <(curl -Ls https://coverage.codacy.com/get.sh) report -r megalist_dataflow/*
32+
continue-on-error: true

.github/workflows/semantic-release.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,7 @@ name: Semantic Release
22

33
on:
44
push:
5-
branches:
6-
- main
5+
branches: [ main, master ]
76

87
jobs:
98
release:

.github/workflows/terraform.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on: ['push']
44

55
jobs:
66
terraform-actions:
7-
name: Workflow
7+
name: tf validate
88
runs-on: ubuntu-latest
99
defaults:
1010
run:

0 commit comments

Comments
 (0)