diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml new file mode 100644 index 0000000..c65f92d --- /dev/null +++ b/.github/workflows/go.yml @@ -0,0 +1,36 @@ +name: Go + +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] + +jobs: + + build: + name: Build + runs-on: ubuntu-latest + steps: + + - name: Set up Go 1.x + uses: actions/setup-go@v2 + with: + go-version: ^1.13 + id: go + + - name: Check out code into the Go module directory + uses: actions/checkout@v2 + + - name: Get dependencies + run: | + go get -v -t -d ./... + if [ -f Gopkg.toml ]; then + curl https://raw.githubusercontent.com/golang/dep/master/install.sh | sh + dep ensure + fi + + - name: Test + run: | + go get github.com/stretchr/testify/assert + go test -v . diff --git a/query_test.go b/query_test.go index 9c4efb0..063f78a 100644 --- a/query_test.go +++ b/query_test.go @@ -151,7 +151,7 @@ func TestFindCountryByAlpha(t *testing.T) { func TestFindAllCountries(t *testing.T) { - assert.Len(t, query.FindAllCountries(), 247) + assert.Len(t, query.FindAllCountries(), 249) }