Skip to content

Now using firehose-core, missing tests + CHANGELOG #171

Now using firehose-core, missing tests + CHANGELOG

Now using firehose-core, missing tests + CHANGELOG #171

Workflow file for this run

name: Build
on: push
env:
GO_VERSION: 1.18
jobs:
build:
name: Run tests
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v2
- uses: actions/setup-go@v2
with:
go-version: ${{ env.GO_VERSION }}
- run: go mod download
- run: make test
- run: make build
build-all:
name: Build all artifacts
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v2
- uses: actions/setup-go@v2
with:
go-version: ${{ env.GO_VERSION }}
- run: go mod download
- run: make build-all