Skip to content

Add Experimental WASM/wasip1 support #195

Add Experimental WASM/wasip1 support

Add Experimental WASM/wasip1 support #195

Workflow file for this run

---
on:
push:
branches:
- master
pull_request:
branches:
- master
env:
GO_VERSION: 1.18.x
name: run tests
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: ${{ env.GO_VERSION }}
- name: Checkout code
uses: actions/checkout@v2
- name: Run linters
uses: golangci/golangci-lint-action@v3
with:
version: v1.46.2
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: create certificates
run: cd inttest/pki && ./mkcerts.sh
- name: Run RabbitMQ
run: cd inttest/rabbitmq && docker-compose up -d
- name: Install Go
if: success()
uses: actions/setup-go@v2
with:
go-version: ${{ env.GO_VERSION }}
- name: wait for RabbitMQ becoming ready
run:
timeout 30 sh -c "while true; do curl -s http://guest:password@localhost:15672/api/exchanges/%2f/amq.topic && break || sleep 3; done"
- name: Run tests
run: make test
- name: Convert coverage.out to coverage.lcov
uses: jandelgado/gcov2lcov-action@v1
- name: Coveralls
uses: coverallsapp/[email protected]
with:
github-token: ${{ secrets.github_token }}
path-to-lcov: coverage.lcov
- name: Build release artifacts
if: env.build_artifacts # currently disabled
uses: goreleaser/goreleaser-action@v3
with:
version: latest
args: build --rm-dist --snapshot
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Upload assets
if: env.build_artifacts
uses: actions/upload-artifact@v3
with:
name: rabtap-binaries
path: dist/*