kat/.gitea/workflows/test_integration.yml
Tanishq Dubey 5e6e101555
All checks were successful
Integration Tests / integration-tests (pull_request) Successful in 10m35s
Unit Tests / unit-tests (pull_request) Successful in 10m43s
Switch to gitea actions
2025-05-16 20:06:43 -04:00

28 lines
580 B
YAML

name: Integration Tests
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
integration-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.24'
- name: Install dependencies
run: go mod download
- name: Run integration tests
run: go test -count=1 -run Integration ./... -v -coverprofile=coverage.out
- name: Print coverage report
run: go tool cover -func=coverage.out
continue-on-error: true