-
Notifications
You must be signed in to change notification settings - Fork 8
52 lines (48 loc) · 1.25 KB
/
canary_integration_tests.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
name: Canary Integration Tests
on:
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 10
strategy:
fail-fast: false
matrix:
version: ["canary-amd64"]
group:
[
"javascript/express",
"javascript/hapi",
"javascript/lang",
"javascript/node",
"javascript/react",
"javascript/third_parties",
"ruby/lang",
"ruby/rails",
"ruby/third_parties",
"java/lang",
"java/spring",
"java/android",
"java/third_parties",
"php/lang",
"php/symfony",
"php/third_parties",
"python/django",
"python/lang",
"python/third_parties",
"go/gorilla",
"go/gosec",
"go/lang",
"go/third_parties",
]
steps:
- uses: actions/checkout@v4
- run: yarn install --frozen-lockfile
- name: Test ${{ matrix.group }}
run: BEARER_VERSION=${{matrix.version}} yarn test tests/${{ matrix.group }}
shell: bash