Skip to content

Merge pull request #125 from quexer/export_ack_on_success #64

Merge pull request #125 from quexer/export_ack_on_success

Merge pull request #125 from quexer/export_ack_on_success #64

Workflow file for this run

name: Unit Tests
on:
push:
branches:
- 'main'
jobs:
golangci:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: actions/setup-go@v3
with:
go-version: 1.19
check-latest: true
- name: Run Linters
run: ./scripts/test.sh lint all
test:
name: Unit Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: actions/setup-go@v3
with:
go-version: 1.19
check-latest: true
- name: Run Unit Tests
run: ./scripts/test.sh test all
summary:
name: Summary
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: actions/setup-go@v3
with:
go-version: 1.19
check-latest: true
- name: Create Summary
run: ./scripts/test.sh summary all