Skip to content

Commit e3341f7

Browse files
committed
added linting and formatting
1 parent cdfc14d commit e3341f7

3 files changed

Lines changed: 5 additions & 11 deletions

File tree

.github/workflows/acceptance-test.yml

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
name: Acceptance Tests
22

33
on:
4-
push:
5-
branches: [main]
64
pull_request:
75
branches: [main]
86
workflow_dispatch:
@@ -94,9 +92,9 @@ jobs:
9492

9593
- name: Run Acceptance Tests
9694
env:
97-
ORY_KETO_TESTS_ENABLED: ${{ github.event_name == 'push' || github.event_name == 'pull_request' || github.event.inputs.run_all == 'true' || github.event.inputs.enable_keto_tests == 'true' }}
98-
ORY_B2B_ENABLED: ${{ github.event_name == 'push' || github.event_name == 'pull_request' || github.event.inputs.run_all == 'true' || github.event.inputs.enable_b2b_tests == 'true' }}
99-
ORY_SOCIAL_PROVIDER_TESTS_ENABLED: ${{ github.event_name == 'push' || github.event_name == 'pull_request' || github.event.inputs.run_all == 'true' || github.event.inputs.enable_social_provider_tests == 'true' }}
100-
ORY_SCHEMA_TESTS_ENABLED: ${{ github.event_name == 'push' || github.event_name == 'pull_request' || github.event.inputs.run_all == 'true' || github.event.inputs.enable_schema_tests == 'true' }}
101-
ORY_PROJECT_TESTS_ENABLED: ${{ github.event_name == 'push' || github.event_name == 'pull_request' || github.event.inputs.run_all == 'true' || github.event.inputs.enable_project_tests == 'true' }}
95+
ORY_KETO_TESTS_ENABLED: ${{ github.event_name == 'pull_request' || github.event.inputs.run_all == 'true' || github.event.inputs.enable_keto_tests == 'true' }}
96+
ORY_B2B_ENABLED: ${{ github.event_name == 'pull_request' || github.event.inputs.run_all == 'true' || github.event.inputs.enable_b2b_tests == 'true' }}
97+
ORY_SOCIAL_PROVIDER_TESTS_ENABLED: ${{ github.event_name == 'pull_request' || github.event.inputs.run_all == 'true' || github.event.inputs.enable_social_provider_tests == 'true' }}
98+
ORY_SCHEMA_TESTS_ENABLED: ${{ github.event_name == 'pull_request' || github.event.inputs.run_all == 'true' || github.event.inputs.enable_schema_tests == 'true' }}
99+
ORY_PROJECT_TESTS_ENABLED: ${{ github.event_name == 'pull_request' || github.event.inputs.run_all == 'true' || github.event.inputs.enable_project_tests == 'true' }}
102100
run: ./scripts/run-acceptance-tests.sh -v -timeout 20m ./...

.github/workflows/lint.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
name: Lint
22

33
on:
4-
push:
5-
branches: [main]
64
pull_request:
75
branches: [main]
86

.github/workflows/unit-test.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
name: Unit Tests
22

33
on:
4-
push:
5-
branches: [main]
64
pull_request:
75
branches: [main]
86

0 commit comments

Comments
 (0)