Skip to content

Merge pull request #104 from synyx/rollup #211

Merge pull request #104 from synyx/rollup

Merge pull request #104 from synyx/rollup #211

Workflow file for this run

---
name: Build & Test
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
# Allow this workflow be reused (for example in the release pipeline)
workflow_call:
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: '1.20'
cache: true
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...