-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/main' into feat/add_md_ds_to_con…
…nectors
- Loading branch information
Showing
28 changed files
with
162 additions
and
519 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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
name: Specific setup for connector | ||
description: Starts a postgres database for unit tests | ||
runs: | ||
using: "composite" | ||
steps: | ||
- name: Start local postgres server with Docker | ||
if: runner.os == 'Linux' | ||
shell: bash | ||
run: | | ||
docker pull postgres | ||
docker run --name my-postgres --env POSTGRES_PASSWORD=password --publish 5432:5432 --detach postgres |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,39 @@ | ||
on: | ||
push: | ||
branches: | ||
- main | ||
- master | ||
pull_request: | ||
branches: | ||
- main | ||
- master | ||
name: All actions | ||
env: | ||
R_KEEP_PKG_SOURCE: true | ||
POSTGRES_PW: ${{secrets.TEST_POSTGRES_DB_PW}} | ||
jobs: | ||
check-current-version: | ||
name: Check current version | ||
uses: >- | ||
NovoNordisk-OpenSource/r.workflows/.github/workflows/check_current_version.yaml@main | ||
with: | ||
use_local_setup_action: true | ||
check-nn-version: | ||
name: Check NN version | ||
uses: >- | ||
NovoNordisk-OpenSource/r.workflows/.github/workflows/check_nn_versions.yaml@main | ||
with: | ||
use_local_setup_action: true | ||
pkgdown: | ||
name: Pkgdown site | ||
uses: NovoNordisk-OpenSource/r.workflows/.github/workflows/pkgdown.yaml@main | ||
with: | ||
use_local_setup_action: true | ||
coverage: | ||
name: Coverage report | ||
uses: NovoNordisk-OpenSource/r.workflows/.github/workflows/coverage.yaml@main | ||
with: | ||
use_local_setup_action: true | ||
megalinter: | ||
name: Megalinter | ||
uses: NovoNordisk-OpenSource/r.workflows/.github/workflows/megalinter.yaml@main |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.