diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml new file mode 100644 index 0000000..5ae12d4 --- /dev/null +++ b/.github/workflows/go.yml @@ -0,0 +1,22 @@ +name: Go + +on: + push: + branches: [ main ] + pull_request: + branches: [ main ] + +jobs: + + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + + - name: Set up Go + uses: actions/setup-go@v3 + with: + go-version: 1.18 + + - name: Test + run: go test -v ./... \ No newline at end of file diff --git a/starlingGo.go b/starling.go similarity index 99% rename from starlingGo.go rename to starling.go index 4945fb5..a351b74 100644 --- a/starlingGo.go +++ b/starling.go @@ -1,4 +1,4 @@ -package starlingGo +package starlinggo import ( "encoding/json"