From 23d612b3b327522055b63afeb6a1221790f49778 Mon Sep 17 00:00:00 2001 From: Jordan Ribbink Date: Mon, 26 Feb 2024 14:17:44 -0800 Subject: [PATCH 1/4] Fix config_test.go --- config/config_test.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/config/config_test.go b/config/config_test.go index 5bf9878e..a69e1691 100644 --- a/config/config_test.go +++ b/config/config_test.go @@ -325,11 +325,12 @@ func Test_DefaultConfig(t *testing.T) { assert.Len(t, cfg.Emulators, 1) assert.Equal(t, "default", cfg.Emulators[0].Name) assert.Equal(t, "emulator-account", cfg.Emulators[0].ServiceAccount) - assert.Len(t, cfg.Networks, 4) + assert.Len(t, cfg.Networks, 5) assert.Equal(t, "emulator", cfg.Networks[0].Name) assert.Equal(t, "testing", cfg.Networks[1].Name) assert.Equal(t, "testnet", cfg.Networks[2].Name) assert.Equal(t, "mainnet", cfg.Networks[3].Name) + assert.Equal(t, "previewnet", cfg.Networks[4].Name) } func Test_DefaultPath(t *testing.T) { From 4e64212ac3da86cd4533a590877dcaa0213265ca Mon Sep 17 00:00:00 2001 From: Jordan Ribbink Date: Mon, 26 Feb 2024 14:18:40 -0800 Subject: [PATCH 2/4] fix ci pattern --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d9971317..b645bc6a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -4,11 +4,11 @@ on: push: branches: - master - - 'feature/**' + - feature/** pull_request: branches: - master - - 'feature/**' + - feature/** env: GO_VERSION: '1.20' From 80f10441c9a82d68a8cf46d6d16fcdb2b6d53ba9 Mon Sep 17 00:00:00 2001 From: Jordan Ribbink Date: Mon, 26 Feb 2024 14:20:29 -0800 Subject: [PATCH 3/4] test --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b645bc6a..d9971317 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -4,11 +4,11 @@ on: push: branches: - master - - feature/** + - 'feature/**' pull_request: branches: - master - - feature/** + - 'feature/**' env: GO_VERSION: '1.20' From b3192ba0957a22f05c0aa1e2bc704e981a84e1a2 Mon Sep 17 00:00:00 2001 From: Jordan Ribbink Date: Mon, 26 Feb 2024 14:21:11 -0800 Subject: [PATCH 4/4] fix CI --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d9971317..4d416697 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -3,11 +3,11 @@ name: CI on: push: branches: - - master + - main - 'feature/**' pull_request: branches: - - master + - main - 'feature/**' env: