Skip to content

Commit c4ff6c4

Browse files
authored
ci: Relative workflow paths (#145)
1 parent d7143c2 commit c4ff6c4

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.coveragerc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
relative_files=True
33

44
[paths]
5-
source=src
5+
source=src

.github/workflows/nightly.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55
- cron: '0 3 * * *' # 3 am UTC every day
66
jobs:
77
code-check:
8-
uses: firebolt-db/firebolt-python-sdk/.github/workflows/code-check.yml@main
8+
uses: ./.github/workflows/code-check.yml
99
tests:
1010
runs-on: ${{ matrix.os }}
1111
strategy:

.github/workflows/pull-request.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@ jobs:
1313
with:
1414
token: ${{ secrets.GITHUB_TOKEN }}
1515
code-checkers:
16-
uses: firebolt-db/firebolt-python-sdk/.github/workflows/code-check.yml@main
16+
uses: ./.github/workflows/code-check.yml
1717
unit-tests:
18-
uses: firebolt-db/firebolt-python-sdk/.github/workflows/unit-tests.yml@main
18+
uses: ./.github/workflows/unit-tests.yml
1919
security-scan:
2020
needs: [unit-tests]
21-
uses: firebolt-db/firebolt-python-sdk/.github/workflows/security-scan.yml@main
21+
uses: ./.github/workflows/security-scan.yml
2222
secrets:
2323
FOSSA_TOKEN: ${{ secrets.FOSSA_TOKEN }}
2424
SONARCLOUD_TOKEN: ${{ secrets.SONARCLOUD_TOKEN }}

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ on:
1212

1313
jobs:
1414
integration-tests:
15-
uses: firebolt-db/firebolt-python-sdk/.github/workflows/integration-tests.yml@main
15+
uses: ./.github/workflows/integration-tests.yml
1616
secrets:
1717
FIREBOLT_USERNAME: ${{ secrets.FIREBOLT_USERNAME }}
1818
FIREBOLT_PASSWORD: ${{ secrets.FIREBOLT_PASSWORD }}

0 commit comments

Comments
 (0)