feat: tag span with w3c parent state #120
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: main | |
on: [push, workflow_dispatch] | |
jobs: | |
format: | |
runs-on: ubuntu-22.04 | |
container: "datadog/docker-library:kong-plugin-ddtrace-ci" | |
steps: | |
- uses: actions/checkout@v3 | |
- name: "Lint" | |
run: stylua --check kong/ spec/ | |
- name: "Static analysis" | |
run: luacheck kong spec | |
run-test: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: Kong/kong-pongo-action@v1 | |
with: | |
kong_version: stable | |
pongo_version: latest | |
- run: pongo run --no-datadog-agent --no-postgres --no-cassandra -- --coverage | |
- name: Publish code coverage summary | |
run: | | |
beg=$( grep -n "Summary" < luacov.report.out | cut -d ':' -f1 ) | |
tail --lines=+${beg} luacov.report.out >> $GITHUB_STEP_SUMMARY | |
- name: Upload coverage reports to Codecov | |
uses: codecov/[email protected] | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
slug: DataDog/kong-plugin-ddtrace |