-
Notifications
You must be signed in to change notification settings - Fork 224
47 lines (43 loc) · 1.08 KB
/
check-experimenter.yml
File metadata and controls
47 lines (43 loc) · 1.08 KB
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
name: Experimenter Tests
on:
push:
branches:
- main
- update_firefox_versions
- update-application-services
paths:
- "experimenter/**"
- "application-services/**"
- ".github/workflows/check-experimenter.yml"
pull_request:
paths:
- "experimenter/**"
- "application-services/**"
- ".github/workflows/check-experimenter.yml"
merge_group:
types: [checks_requested]
jobs:
check:
strategy:
fail-fast: false
matrix:
include:
- arch: x86_64
runner: ubuntu-24.04
- arch: aarch64
runner: ubuntu-24.04-arm
name: "${{ matrix.arch }}"
runs-on: ${{ matrix.runner }}
permissions:
contents: read
id-token: write
steps:
- uses: actions/checkout@v6
- uses: ./.github/actions/setup-cached-build
with:
arch: ${{ matrix.arch }}
gcp-project-number: ${{ vars.GCPV2_WORKLOAD_IDENTITY_POOL_PROJECT_NUMBER }}
- name: Run tests and linting
run: |
cp .env.sample .env
make check