diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml deleted file mode 100644 index 6fc8e63..0000000 --- a/.gitlab-ci.yml +++ /dev/null @@ -1,5 +0,0 @@ ---- -image: golang:1.14.1-alpine - -include: -- local: '/experiments/array-sum/.gitlab-ci.yml' diff --git a/README.md b/README.md index be659ac..0954977 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,3 @@ # Go Laboratory -A collection of small Go projects created from experimentation or tutorials. \ No newline at end of file +A collection of small experimental projects. diff --git a/experiments/array-sum/.gitlab-ci.yml b/experiments/array-sum/.gitlab-ci.yml deleted file mode 100644 index cd71206..0000000 --- a/experiments/array-sum/.gitlab-ci.yml +++ /dev/null @@ -1,10 +0,0 @@ ---- -test:arraysum: - only: - refs: - - merge_requests - changes: - - "experiments/array-sum/*.go" - - "experiments/array-sum/.gitlab-ci.yml" - script: - - go test -v ./experiments/array-sum diff --git a/experiments/array-sum/README.md b/experiments/go/array-sum/README.md similarity index 100% rename from experiments/array-sum/README.md rename to experiments/go/array-sum/README.md diff --git a/experiments/array-sum/array_sum.go b/experiments/go/array-sum/array_sum.go similarity index 100% rename from experiments/array-sum/array_sum.go rename to experiments/go/array-sum/array_sum.go diff --git a/experiments/array-sum/array_sum_test.go b/experiments/go/array-sum/array_sum_test.go similarity index 100% rename from experiments/array-sum/array_sum_test.go rename to experiments/go/array-sum/array_sum_test.go diff --git a/go.mod b/go.mod index 726cea1..f060574 100644 --- a/go.mod +++ b/go.mod @@ -1,3 +1,3 @@ -module gitlab.com/dananglin/go-laboratory +module forge.dananglin.me.uk/code/apollo/laboratory -go 1.13 +go 1.17