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

Feat: migration #51

Merged
merged 19 commits into from
Dec 2, 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
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
Loading