Skip to content

Commit

Permalink
Update release.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
lim-yoona authored Oct 8, 2023
1 parent d400daa commit a7ce9fd
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,25 @@ permissions:
packages: write

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.20'

- name: Install dependencies
run:
go get .
- name: Build
run: go build -v ./example/..

- name: Test
run: go test -v -cover

release-msgpack:
runs-on: ubuntu-latest
strategy:
Expand Down

0 comments on commit a7ce9fd

Please sign in to comment.