Skip to content

enhance: add simple integration test #7

enhance: add simple integration test

enhance: add simple integration test #7

Workflow file for this run

name: integration
on:
push:
branches:
- main
paths-ignore:
- docs/**
- tools/**
- README.md
pull_request:
branches:
- main
paths-ignore:
- docs/**
- tools/**
- README.md
jobs:
integration:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-22.04, windows-latest]
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 1
- uses: actions/setup-go@v5
with:
cache: false
go-version: "1.22"
- name: Build
run: make build
- name: Run Integration Tests
run: make integration