We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9aa7586 commit 9f27095Copy full SHA for 9f27095
.github/workflows/run-tests.yaml
@@ -3,9 +3,11 @@ name: Run Tests
3
on:
4
- push
5
- pull_request
6
+concurrency:
7
+ group: ci-${{ github.ref }}
8
+ cancel-in-progress: true
9
10
jobs:
-
11
build:
12
runs-on: ubuntu-latest
13
env:
tests/migrate_test.go
@@ -1120,7 +1120,8 @@ func TestMigrateDonotAlterColumn(t *testing.T) {
1120
1121
var err error
1122
err = mockM.DropTable(&NotTriggerUpdate{})
1123
- tests.AssertEqual(t, err, nil)
+ // DROP TABLE fails if the table does not exist.
1124
+ // tests.AssertEqual(t, err, nil)
1125
err = mockM.AutoMigrate(&NotTriggerUpdate{})
1126
tests.AssertEqual(t, err, nil)
1127
0 commit comments