Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Running Functional Tests - All Databases on the main branch too (Lombiq Technologies: OCORE-167) #15956

Merged
merged 5 commits into from
May 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
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
6 changes: 4 additions & 2 deletions .github/workflows/assets_validation.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
name: Validating the Building of Public Assets

on:
on:
# Run it on main and release pushes too, in case we merge from a branch that's not up-to-date with the target branch
# and breaks something after merge (or if we push to main).
push:
paths-ignore:
- '**/*.md'
- 'mkdocs.yml'
- 'src/docs/**/*'
branches: [ main ]
branches: [ main, release/** ]
pull_request:
branches: [ main, release/** ]

Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/docs_validation.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
name: Validating Building the Documentation

on:
on:
# Run it on main and release pushes too, in case we merge from a branch that's not up-to-date with the target branch
# and breaks something after merge (or if we push to main).
push:
paths:
- 'mkdocs.yml'
- 'src/docs/**'
branches: [ main ]
branches: [ main, release/** ]
pull_request:
paths:
- 'mkdocs.yml'
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/first_time_contributor.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
name: First-time Contributor Welcome

on:
issues:
types: [opened]
pull_request_target:
types: [opened, closed]
issues:
types: [opened]
pull_request_target:
types: [opened, closed]

jobs:
first-time-contributor-welcome:
Expand Down
10 changes: 10 additions & 0 deletions .github/workflows/functional_all_db.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,19 @@
name: Functional Tests - All Databases

on:
# Manual trigger.
workflow_dispatch:
pull_request_review:
types: [submitted]
# Run it on main and release pushes too, in case we merge from a branch that's not up-to-date with the target branch
# and breaks something after merge (or if we push to main).
push:
paths-ignore:
- '**/*.md'
- 'mkdocs.yml'
- 'src/docs/**/*'
branches: [ main, release/** ]

env:
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true
DOTNET_CLI_TELEMETRY_OPTOUT: true
Expand Down
7 changes: 6 additions & 1 deletion .github/workflows/main_ci.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,19 @@
name: Main - CI

on:
# Run it on main and release pushes too, in case we merge from a branch that's not up-to-date with the target branch
# and breaks something after merge (or if we push to main).
push:
paths-ignore:
- '**/*.md'
- 'mkdocs.yml'
- 'src/docs/**/*'
branches: [ main ]
branches: [ main, release/** ]

env:
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true
DOTNET_CLI_TELEMETRY_OPTOUT: true

jobs:
test:
runs-on: ${{ matrix.os }}
Expand Down