Skip to content

Commit f9c7d62

Browse files
* Add devcontainer * Run formatter * Fix dockerfile * Move things to testsets * Test fixes * Formatting * Tweaks * Use do block * Fix test
1 parent 9724a17 commit f9c7d62

File tree

4 files changed

+748
-504
lines changed

4 files changed

+748
-504
lines changed

.devcontainer/Dockerfile

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
FROM julia:1.7
2+
3+
RUN apt-get update && apt-get install --no-install-recommends -y git && rm -rf /var/lib/apt/lists/*
4+
5+
WORKDIR /app
6+
7+
# COPY Project.toml .
8+
9+
# RUN julia -e 'using Pkg; Pkg.dev(""); Pkg.instantiate(); Pkg.precompile();'

.devcontainer/devcontainer.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
2+
{
3+
"extensions": [
4+
"julialang.language-julia"
5+
],
6+
"runArgs": ["--privileged"],
7+
"dockerFile": "Dockerfile"
8+
}

test/Project.toml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
[deps]
2+
DBInterface = "a10d1c49-ce27-4219-8d33-6db1a4562965"
3+
Dates = "ade2ca70-3891-5945-98fb-dc099432e06a"
4+
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
5+
SQLite = "0aa819cd-b072-5ff4-a722-6bc24af294d9"
6+
Tables = "bd369af6-aec1-5ad0-b16a-f7cc5008161c"
7+
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
8+
WeakRefStrings = "ea10d353-3f73-51f8-a26c-33c1cb351aa5"

0 commit comments

Comments
 (0)