File tree Expand file tree Collapse file tree 1 file changed +18
-0
lines changed Expand file tree Collapse file tree 1 file changed +18
-0
lines changed Original file line number Diff line number Diff line change 40
40
- name : Test
41
41
run : go test ./...
42
42
43
+ integration_ghes :
44
+ name : Integration Test (GitHub Enterprise Server)
45
+ runs-on : ubuntu-20.04
46
+ if : ${{ github.event != 'pull_request' || github.event.pull_request.head.repo.full_name == github.repository }}
47
+ steps :
48
+ - name : Checkout
49
+ uses : actions/checkout@v2
50
+ - name : Setup Go
51
+ uses : actions/setup-go@v2
52
+ with :
53
+ go-version : 1.14.7
54
+ - name : Build
55
+ run : go build
56
+ - name : Test
57
+ run : ./codeql-action-sync sync --destination-url https://ghe.io/ --destination-repository codeql-action-sync-tool/integration-test
58
+ env :
59
+ CODEQL_ACTION_SYNC_TOOL_DESTINATION_TOKEN : ${{ secrets.INTEGRATION_TEST_GHES_TOKEN }}
60
+
43
61
lint :
44
62
name : Lint
45
63
runs-on : ubuntu-20.04
You can’t perform that action at this time.
0 commit comments