-
Notifications
You must be signed in to change notification settings - Fork 312
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Validate YAML files using actionlint * Check that tests in packages/datadog-instrumentations/tests/ are actually run. * Ensure all tests have the same triggers.
- Loading branch information
Showing
7 changed files
with
155 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,6 +4,8 @@ on: | |
push: | ||
branches: | ||
- master | ||
schedule: | ||
- cron: "0 4 * * *" | ||
|
||
jobs: | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,6 +4,8 @@ on: | |
pull_request: | ||
push: | ||
branches: [master] | ||
schedule: | ||
- cron: "0 4 * * *" | ||
|
||
jobs: | ||
static-analysis: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
name: Instrumentations | ||
|
||
on: | ||
pull_request: | ||
push: | ||
branches: [master] | ||
schedule: | ||
- cron: '0 4 * * *' | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref || github.run_id }} | ||
cancel-in-progress: true | ||
|
||
# TODO: upstream jobs | ||
|
||
|
||
jobs: | ||
|
||
# These ones don't have a plugin directory, but exist in the | ||
# instrumentations directory, so they need to be run somewhere. This seems to | ||
# be a reasonable place to run them for now. | ||
|
||
check_require_cache: | ||
runs-on: ubuntu-latest | ||
env: | ||
PLUGINS: check_require_cache | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: ./.github/actions/plugins/test | ||
|
||
fs: | ||
runs-on: ubuntu-latest | ||
env: | ||
PLUGINS: fs | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: ./.github/actions/plugins/test | ||
|
||
multer: | ||
runs-on: ubuntu-latest | ||
env: | ||
PLUGINS: multer | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: ./.github/actions/plugins/test | ||
|
||
passport-http: | ||
runs-on: ubuntu-latest | ||
env: | ||
PLUGINS: passport-http | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: ./.github/actions/plugins/test | ||
|
||
passport-local: | ||
runs-on: ubuntu-latest | ||
env: | ||
PLUGINS: passport-local | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: ./.github/actions/plugins/test |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,6 +4,8 @@ on: | |
pull_request: | ||
push: | ||
branches: [master] | ||
schedule: | ||
- cron: "0 4 * * *" | ||
|
||
jobs: | ||
integration: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters