Skip to content

Commit

Permalink
Merge pull request #19 from onflow/jribbink/fix-ci
Browse files Browse the repository at this point in the history
Fix `feature/stable-cadence` tests & `main` branch CI trigger
  • Loading branch information
jribbink authored Feb 27, 2024
2 parents 433a6c5 + b3192ba commit 5993bf1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@ name: CI
on:
push:
branches:
- master
- main
- 'feature/**'
pull_request:
branches:
- master
- main
- 'feature/**'

env:
Expand Down
3 changes: 2 additions & 1 deletion config/config_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit 5993bf1

Please sign in to comment.