Skip to content

Commit

Permalink
fix(sync): fix yaml linting
Browse files Browse the repository at this point in the history
  • Loading branch information
RasmusSkytte committed Jan 15, 2024
1 parent e0f556f commit f9ab1fd
Showing 1 changed file with 38 additions and 37 deletions.
75 changes: 38 additions & 37 deletions .github/sync.yaml
Original file line number Diff line number Diff line change
@@ -1,43 +1,44 @@
group:
repos: |
ssi-dk/SCDB
# SCDB
- repos: |
ssi-dk/SCDB
files:
- source: workflows/all-workflows.yaml
dest: .github/workflows/all-workflows.yaml
template:
schemas: test,test.one
files:
- source: workflows/all-workflows.yaml
dest: .github/workflows/all-workflows.yaml
template:
schemas: test,test.one
- source: testthat/helper-setup.R
dest: tests/testthat/helper-setup.R
template:
conn_list: |
"SQLite" = "RSQLite::SQLite",
"SQLite - w. schemas" = "RSQLite::SQLite"
conn_args: |
"SQLite" = list(dbname = file.path(tempdir(), "SQLite.SQLite")),
"SQLite - w. schemas" = list(dbname = file.path(tempdir(), "SQLite_schemas.SQLite"))
conn_post_connect: |
"SQLite - w. schemas" = list(
paste0("ATTACH '", file.path(tempdir(), "SQLite_test.SQLite"), "' AS 'test'"),
paste0("ATTACH '", file.path(tempdir(), "SQLite_test_one.SQLite"), "' AS 'test.one'")
)
- source: testthat/helper-setup.R
dest: tests/testthat/helper-setup.R
template:
conn_list: |
"SQLite" = "RSQLite::SQLite",
"SQLite - w. schemas" = "RSQLite::SQLite"
conn_args: |
"SQLite" = list(dbname = file.path(tempdir(), "SQLite.SQLite")),
"SQLite - w. schemas" = list(dbname = file.path(tempdir(), "SQLite_schemas.SQLite"))
conn_post_connect: |
"SQLite - w. schemas" = list(
paste0("ATTACH '", file.path(tempdir(), "SQLite_test.SQLite"), "' AS 'test'"),
paste0("ATTACH '", file.path(tempdir(), "SQLite_test_one.SQLite"), "' AS 'test.one'")
)
group:
repos: |
ssi-dk/diseasystore
ssi-dk/diseasy
# diseasyverse
- repos: |
ssi-dk/diseasystore
ssi-dk/diseasy
files:
- source: workflows/all-workflows.yaml
dest: .github/workflows/all-workflows.yaml
template:
schemas: test_ds,not_test_ds
files:
- source: workflows/all-workflows.yaml
dest: .github/workflows/all-workflows.yaml
template:
schemas: test_ds,not_test_ds
- source: testthat/helper-setup.R
dest: tests/testthat/helper-setup.R
template:
conn_list:
"SQLite" = "RSQLite::SQLite"
conn_args:
"SQLite" = list(dbname = file.path(tempdir(), "SQLite.SQLite"))
- source: testthat/helper-setup.R
dest: tests/testthat/helper-setup.R
template:
conn_list: |
"SQLite" = "RSQLite::SQLite"
conn_args: |
"SQLite" = list(dbname = file.path(tempdir(), "SQLite.SQLite"))

0 comments on commit f9ab1fd

Please sign in to comment.