Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main' into feat/add_md_ds_to_con…
Browse files Browse the repository at this point in the history
…nectors
  • Loading branch information
Cervangirard committed Dec 5, 2024
2 parents ee919dd + 4007d6a commit d13d025
Show file tree
Hide file tree
Showing 28 changed files with 162 additions and 519 deletions.
11 changes: 11 additions & 0 deletions .github/actions/setup/action.yaml
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
85 changes: 0 additions & 85 deletions .github/workflows/R-CMD-check-versions.yaml

This file was deleted.

70 changes: 0 additions & 70 deletions .github/workflows/R-CMD-check.yaml

This file was deleted.

39 changes: 39 additions & 0 deletions .github/workflows/check_and_co.yaml
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
91 changes: 0 additions & 91 deletions .github/workflows/mega-linter.yaml

This file was deleted.

87 changes: 0 additions & 87 deletions .github/workflows/pkgdown.yaml

This file was deleted.

Loading

0 comments on commit d13d025

Please sign in to comment.