Skip to content

Release/0.11.0

Release/0.11.0 #57

Workflow file for this run

name: Build
on:
push:
branches:
- master
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: '1.24'
- name: Launch the docker-compose stack
run: make setup-up
- name: Build
run: make
- name: Test and send coverage
env:
COVERALLS_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
make
make goveralls
DISTRO=linux make integration