Skip to content

chore: improve README #53

chore: improve README

chore: improve README #53

name: Functional tests
on:
push:
branches-ignore:
- main
workflow_dispatch:
schedule:
- cron: "0 5 * * *"
jobs:
set_datadog_team:
name: 'Set Datadog team'
uses: fingerprintjs/dx-team-toolkit/.github/workflows/set-datadog-team.yml@v1
secrets:
DD_API_KEY: ${{ secrets.INTEGRATIONS_DATADOG_API_KEY }}
tests:
name: Functional tests (GO ${{ matrix.go-version }})
runs-on: "ubuntu-latest"
strategy:
matrix:
go-version: ['1.21', '1.22', '1.23', '1.24']
steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.sha }}
- uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- name: Run functional tests
run: go test
working-directory: functional_test
env:
FINGERPRINT_API_KEY: ${{ secrets.FINGERPRINT_API_KEY }}