Merge pull request #43 from grisu48/cli #137
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
name: gopenqa | |
on: push | |
jobs: | |
gopenqa: | |
name: gopenqa test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Setup go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: '1.20' | |
- name: Install requirements | |
run: go get github.com/streadway/amqp | |
- name: Run test suite | |
run: go test ./... |