1
0
Fork 0
mirror of https://github.com/adnanh/webhook.git synced 2026-01-23 10:25:12 +00:00
webhook/.github/workflows/build.yml
Jacob Weinstock ac897f59aa Update go.mod and github action:
Dependencies were old.

Signed-off-by: Jacob Weinstock <jakobweinstock@gmail.com>
2023-08-08 17:29:52 -06:00

23 lines
450 B
YAML

name: build
on: [push, pull_request]
jobs:
build:
strategy:
matrix:
go-version: [1.19.x, 1.20.x]
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go-version }}
id: go
- name: Build
run: make build
- name: Test
run: make test