diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 5f9e6e9..09b021b 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -2,24 +2,24 @@ name: Go on: push: - branches: [ master ] + branches: [ "master" ] pull_request: - branches: [ master ] + branches: [ "master" ] jobs: build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - - name: Set up Go - uses: actions/setup-go@v2 - with: - go-version: 1.19 + - name: Set up Go + uses: actions/setup-go@v3 + with: + go-version: 1.19 - - name: Build - run: go build -v ./... + - name: Build + run: go build -v ./... - - name: Test - run: go test -v ./.. \ No newline at end of file + - name: Test + run: go test -v ./... \ No newline at end of file diff --git a/README.md b/README.md index e5a3386..d9cb9e6 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,7 @@