Skip to content

Commit

Permalink
Merge pull request #108 from gochigo/update-modules
Browse files Browse the repository at this point in the history
updated module dependencies, fixed workflow, and added badges
  • Loading branch information
paganotoni committed Nov 19, 2021
2 parents 3416f0e + 28f4984 commit 33f521c
Show file tree
Hide file tree
Showing 4 changed files with 470 additions and 104 deletions.
30 changes: 15 additions & 15 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,12 @@ jobs:

steps:
- name: Set up Go
uses: actions/setup-go@v1
uses: actions/setup-go@v2
with:
go-version: 1.13
go-version: 1.16
id: go
- name: Checkout Code
uses: actions/checkout@v1
uses: actions/checkout@v2
with:
fetch-depth: 1
- name: Get dependencies
Expand Down Expand Up @@ -82,12 +82,12 @@ jobs:

steps:
- name: Set up Go
uses: actions/setup-go@v1
uses: actions/setup-go@v2
with:
go-version: 1.13
go-version: 1.16
id: go
- name: Checkout Code
uses: actions/checkout@v1
uses: actions/checkout@v2
with:
fetch-depth: 1
- name: Get dependencies
Expand Down Expand Up @@ -133,12 +133,12 @@ jobs:

steps:
- name: Set up Go
uses: actions/setup-go@v1
uses: actions/setup-go@v2
with:
go-version: 1.13
go-version: 1.16
id: go
- name: Checkout Code
uses: actions/checkout@v1
uses: actions/checkout@v2
with:
fetch-depth: 1
- name: Get dependencies
Expand Down Expand Up @@ -194,12 +194,12 @@ jobs:
- name: Install sqlite3
run: choco install sqlite
- name: Set up Go
uses: actions/setup-go@v1
uses: actions/setup-go@v2
with:
go-version: 1.13
go-version: 1.16
id: go
- name: Checkout Code
uses: actions/checkout@v1
uses: actions/checkout@v2
with:
fetch-depth: 1
- name: Get dependencies
Expand Down Expand Up @@ -247,12 +247,12 @@ jobs:

steps:
- name: Set up Go
uses: actions/setup-go@v1
uses: actions/setup-go@v2
with:
go-version: 1.13
go-version: 1.16
id: go
- name: Checkout Code
uses: actions/checkout@v1
uses: actions/checkout@v2
with:
fetch-depth: 1
- name: Get dependencies
Expand Down
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Fizz

[![Actions Status](https://github.com/gobuffalo/fizz/workflows/Tests/badge.svg)](https://github.com/gobuffalo/fizz/actions)
[![GoDoc](https://godoc.org/github.com/gobuffalo/fizz?status.svg)](https://godoc.org/github.com/gobuffalo/fizz)

A Common DSL for Migrating Databases

## Create a Table
Expand Down Expand Up @@ -213,4 +216,4 @@ run the following command a couple of times until tests pass:

```
REFRESH_FIXTURES=true make test
```
```
17 changes: 7 additions & 10 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,16 +1,13 @@
module github.com/gobuffalo/fizz

go 1.12
go 1.16

require (
github.com/Masterminds/semver/v3 v3.0.3
github.com/go-sql-driver/mysql v1.5.0
github.com/gobuffalo/plush/v4 v4.0.0
github.com/gobuffalo/pop/v5 v5.2.0
github.com/jackc/pgx/v4 v4.6.0
github.com/Masterminds/semver/v3 v3.1.1
github.com/go-sql-driver/mysql v1.6.0
github.com/gobuffalo/plush/v4 v4.1.9
github.com/gobuffalo/pop/v5 v5.3.4
github.com/jackc/pgx/v4 v4.13.0
github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51
github.com/stretchr/testify v1.5.1
golang.org/x/crypto v0.0.0-20200604202706-70a84ac30bf9 // indirect
golang.org/x/text v0.3.3 // indirect
golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543 // indirect
github.com/stretchr/testify v1.7.0
)

0 comments on commit 33f521c

Please sign in to comment.