From eaf330e1feb18be398199ea30b30a72e79ba2e3e Mon Sep 17 00:00:00 2001 From: DownerCase Date: Mon, 16 Dec 2024 13:57:28 +0000 Subject: [PATCH] Add missing workspace file --- .github/workflows/ci.yml | 8 -------- .gitignore | 1 - go.work | 6 ++++++ 3 files changed, 6 insertions(+), 9 deletions(-) create mode 100644 go.work diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9109bb7..f4ec74a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -28,14 +28,6 @@ jobs: - id: set-modules run: echo "modules=$(go list -m -json | jq -s '.' | jq -c '[.[].Dir]')" >> $GITHUB_OUTPUT - - run: echo $GITHUB_OUTPUT - - - run: echo "$(go list -m -json)" - - - run: echo "$(go list -m -json | jq -s '.') - - - run: echo "$(go list -m -json | jq -s '.' | jq -c '[.[].Dir]')" - go-lint: needs: detect-go-modules container: diff --git a/.gitignore b/.gitignore index c7e9860..48c8567 100644 --- a/.gitignore +++ b/.gitignore @@ -19,7 +19,6 @@ ecal-go # vendor/ # Go workspace file -go.work go.work.sum # env file diff --git a/go.work b/go.work new file mode 100644 index 0000000..fb2e9ce --- /dev/null +++ b/go.work @@ -0,0 +1,6 @@ +go 1.23.3 + +use ( + . + ./cmd +)