diff --git a/.github/workflows/integration-testing.yml b/.github/workflows/integration-testing.yml index b014cc898..2d74b733f 100644 --- a/.github/workflows/integration-testing.yml +++ b/.github/workflows/integration-testing.yml @@ -129,6 +129,29 @@ jobs: env: TEST_MODE: true + go-custom-tracing-autobuild: + # No need to test Go autobuild on multiple OSes since + # we're testing Go custom tracing with a manual build on all OSes. + runs-on: ubuntu-latest + env: + CODEQL_EXTRACTOR_GO_BUILD_TRACING: "on" + + steps: + - uses: actions/checkout@v2 + - name: Move codeql-action + shell: bash + run: | + mkdir ../action + mv * .github ../action/ + mv ../action/tests/multi-language-repo/{*,.github} . + - uses: ./../action/init + with: + languages: go + - uses: ./../action/autobuild + - uses: ./../action/analyze + env: + TEST_MODE: true + multi-language-repo_rubocop: runs-on: ubuntu-latest