Update sqs
to kernel v0.20.0 (#85)
#35
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## | |
## Build the main branch | |
## | |
name: build | |
on: | |
push: | |
branches: | |
- main | |
- /refs/heads/main | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
module: [".", "queue", "qtest", "broker/eventbridge", "broker/eventddb", "broker/events3", "broker/eventsqs", "broker/sqs", "broker/websocket"] | |
steps: | |
- uses: actions/setup-go@v5 | |
with: | |
go-version: "1.22" | |
- uses: actions/checkout@v4 | |
- name: go build | |
working-directory: ${{ matrix.module }} | |
run: | | |
go build ./... | |
- name: go test | |
working-directory: ${{ matrix.module }} | |
run: | | |
go test -coverprofile=profile.cov $(go list ./... | grep -v /examples/) | |
env: | |
## GOPATH required to build serverless app inside unittest | |
GOPATH: /home/runner/work/${{ github.event.repository.name }}/go | |
- uses: shogo82148/actions-goveralls@v1 | |
continue-on-error: true | |
with: | |
working-directory: ${{ matrix.module }} | |
path-to-profile: profile.cov | |
flag-name: ${{ matrix.module }} | |
parallel: true | |
- name: release | |
working-directory: ${{ matrix.module }} | |
run: | | |
git config user.name "GitHub Actions" | |
git config user.email "[email protected]" | |
for mod in `grep -roh "const Version = \".*" * | grep -Eoh "([[:alnum:]]*/*){1,}v[0-9]*\.[0-9]*\.[0-9]*"` | |
do | |
git tag $mod 2> /dev/null && git push origin -u $mod 2> /dev/null && echo "[+] $mod" || echo "[ ] $mod" | |
done | |
finish: | |
needs: build | |
runs-on: ubuntu-latest | |
steps: | |
- uses: shogo82148/actions-goveralls@v1 | |
with: | |
parallel-finished: true |