mirror of
https://github.com/karust/openserp.git
synced 2026-08-06 01:03:56 +08:00
27 lines
480 B
YAML
27 lines
480 B
YAML
name: Integration Tests
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
integration:
|
|
runs-on: ubuntu-latest
|
|
|
|
env:
|
|
OPENSERP_INTEGRATION_TESTS: "1"
|
|
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Setup Go
|
|
uses: actions/setup-go@v5
|
|
with:
|
|
go-version: "1.24"
|
|
cache: true
|
|
|
|
- name: Run integration tests
|
|
run: go test -race -count=1 -timeout=120s -tags=integration ./... |